数字督察一体化平台-案件核查浏览器插件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
pengwei 38f5947c17 fit:1、浏览器插件优化和完善 10 months ago
public first commit 10 months ago
src fit:1、浏览器插件优化和完善 10 months ago
.editorconfig first commit 10 months ago
.gitignore first commit 10 months ago
.npmignore first commit 10 months ago
.prettierignore first commit 10 months ago
.prettierrc first commit 10 months ago
CHANGELOG.md first commit 10 months ago
LICENSE first commit 10 months ago
README.md first commit 10 months ago
build.crx first commit 10 months ago
build.pem first commit 10 months ago
devtools.html first commit 10 months ago
download.html first commit 10 months ago
globalConfig.ts first commit 10 months ago
my-crx.iml first commit 10 months ago
newtab.html first commit 10 months ago
options.html first commit 10 months ago
package-lock.json first commit 10 months ago
package.json first commit 10 months ago
popup.html first commit 10 months ago
sidepanel.html first commit 10 months ago
tsconfig.json first commit 10 months ago
tsconfig.node.json first commit 10 months ago
version.json first commit 10 months ago
vite.config.ts first commit 10 months ago

README.md

my-crx

a chrome extension tools built with Vite + Vue, and Manifest v3

Installing

  1. Check if your Node.js version is >= 14.
  2. Change or configurate the name of your extension on src/manifest.
  3. Run npm install to install the dependencies.

Developing

run the command

$ cd my-crx

$ npm run dev

Chrome Extension Developer Mode

  1. set your Chrome browser 'Developer mode' up
  2. click 'Load unpacked', and select my-crx/build folder

Nomal FrontEnd Developer Mode

  1. access http://0.0.0.0:3000/
  2. when debugging popup page, open http://0.0.0.0:3000//popup.html
  3. when debugging options page, open http://0.0.0.0:3000//options.html

Packing

After the development of your extension run the command

$ npm run build

Now, the content of build folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the official guide to more infos about publishing.


Generated by create-chrome-ext