feat: 增加谷歌插件
Showing
.babelrc
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierrc
0 → 100644
LICENSE
0 → 100644
dist/_locales/en/messages.json
0 → 100644
dist/_locales/zh_CN/messages.json
0 → 100644
dist/background.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/icons/icon_128.png
0 → 100644
9.81 KB
dist/icons/icon_48.png
0 → 100644
2.52 KB
dist/images/api.png
0 → 100644
827 Bytes
dist/images/doc.png
0 → 100644
805 Bytes
dist/images/gitlab.png
0 → 100644
1.3 KB
dist/images/icon-jing128.png
0 → 100644
2.94 KB
dist/images/icon-jing16.png
0 → 100644
422 Bytes
dist/images/icon-jing38.png
0 → 100644
906 Bytes
dist/images/icon-jing48.png
0 → 100644
1.09 KB
dist/images/icon128.png
0 → 100644
3.7 KB
dist/images/icon16.png
0 → 100644
444 Bytes
dist/images/icon19.png
0 → 100644
489 Bytes
dist/images/icon38.png
0 → 100644
859 Bytes
dist/images/icon39.png
0 → 100644
862 Bytes
dist/images/icon48.png
0 → 100644
1.32 KB
dist/images/images/api.png
0 → 100644
827 Bytes
dist/images/images/gitlab.png
0 → 100644
1.3 KB
dist/images/images/jenkins.png
0 → 100644
2.65 KB
dist/images/images/lanhu.png
0 → 100644
5.2 KB
dist/images/images/logo40.png
0 → 100644
6.65 KB
dist/images/images/logo45.png
0 → 100644
2.3 KB
dist/images/images/tapd.png
0 → 100644
1.05 KB
dist/images/images/title32.png
0 → 100644
853 Bytes
dist/images/images/yuque.png
0 → 100644
834 Bytes
dist/images/jenkins.png
0 → 100644
2.65 KB
dist/images/lanhu.png
0 → 100644
5.2 KB
dist/images/logo40.png
0 → 100644
6.65 KB
dist/images/logo45.png
0 → 100644
2.3 KB
dist/images/notify256.png
0 → 100644
11.3 KB
dist/images/npm.png
0 → 100644
490 Bytes
dist/images/tapd.png
0 → 100644
1.05 KB
dist/images/title32.png
0 → 100644
853 Bytes
dist/images/yuque.png
0 → 100644
834 Bytes
dist/manifest.json
0 → 100644
dist/options/options.css
0 → 100644
dist/options/options.html
0 → 100644
dist/options/options.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/popup/popup.css
0 → 100644
dist/popup/popup.html
0 → 100644
dist/popup/popup.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
{ | ||
"name": "vue-chrom-plugin", | ||
"version": "1.0.0", | ||
"description": "A Vue.js web extension", | ||
"author": "yhq <yueheqing@demogic.com>", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=10" | ||
}, | ||
"scripts": { | ||
"lint": "eslint --ext .js,.vue src", | ||
"prettier": "prettier \"src/**/*.{js,vue}\"", | ||
"prettier:write": "npm run prettier -- --write", | ||
"build": "cross-env NODE_ENV=production webpack --hide-modules", | ||
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules", | ||
"build-zip": "node scripts/build-zip.js", | ||
"watch": "npm run build -- --watch", | ||
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "pretty-quick --staged" | ||
} | ||
}, | ||
"dependencies": { | ||
"axios": "^0.19.0", | ||
"vue": "^2.6.10", | ||
"vue-router": "^3.0.1", | ||
"vuex": "^3.0.1", | ||
"webextension-polyfill": "^0.3.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.1.2", | ||
"@babel/plugin-proposal-optional-chaining": "^7.0.0", | ||
"@babel/preset-env": "^7.1.0", | ||
"@babel/runtime-corejs3": "^7.4.0", | ||
"archiver": "^3.0.0", | ||
"babel-eslint": "^10.0.3", | ||
"babel-loader": "^8.0.2", | ||
"copy-webpack-plugin": "^5.1.1", | ||
"core-js": "^3.0.1", | ||
"cross-env": "^5.2.0", | ||
"css-loader": "^3.4.0", | ||
"ejs": "^2.6.1", | ||
"eslint": "^6.6.0", | ||
"eslint-config-prettier": "^6.7.0", | ||
"eslint-config-standard": "^14.1.0", | ||
"eslint-friendly-formatter": "^4.0.1", | ||
"eslint-loader": "^3.0.2", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-node": "^10.0.0", | ||
"eslint-plugin-prettier": "^3.1.1", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"eslint-plugin-vue": "^6.0.1", | ||
"file-loader": "^5.0.2", | ||
"husky": "^2.4.0", | ||
"mini-css-extract-plugin": "^0.9.0", | ||
"node-sass": "^4.9.3", | ||
"prettier": "^1.17.1", | ||
"pretty-quick": "^1.8.0", | ||
"sass-loader": "^7.1.0", | ||
"vue-loader": "^15.4.2", | ||
"vue-template-compiler": "^2.6.10", | ||
"web-ext-types": "^2.1.0", | ||
"webpack": "^4.20.2", | ||
"webpack-cli": "^3.3.10", | ||
"webpack-extension-reloader": "^1.1.0" | ||
} | ||
} |
scripts/build-zip.js
0 → 100644
src/_locales/en/messages.json
0 → 100644
src/_locales/zh_CN/messages.json
0 → 100644
src/background.js
0 → 100644
src/css/base.css
0 → 100644
src/css/pop.css
0 → 100644
src/icons/icon.xcf
0 → 100644
File added
src/icons/icon_128.png
0 → 100644
9.81 KB
src/icons/icon_48.png
0 → 100644
2.52 KB
src/images/api.png
0 → 100644
827 Bytes
src/images/doc.png
0 → 100644
805 Bytes
src/images/gitlab.png
0 → 100644
1.3 KB
src/images/icon-jing128.png
0 → 100644
2.94 KB
src/images/icon-jing16.png
0 → 100644
422 Bytes
src/images/icon-jing38.png
0 → 100644
906 Bytes
src/images/icon-jing48.png
0 → 100644
1.09 KB
src/images/icon128.png
0 → 100644
3.7 KB
src/images/icon16.png
0 → 100644
444 Bytes
src/images/icon19.png
0 → 100644
489 Bytes
src/images/icon38.png
0 → 100644
859 Bytes
src/images/icon39.png
0 → 100644
862 Bytes
src/images/icon48.png
0 → 100644
1.32 KB
src/images/jenkins.png
0 → 100644
2.65 KB
src/images/lanhu.png
0 → 100644
5.2 KB
src/images/logo40.png
0 → 100644
6.65 KB
src/images/logo45.png
0 → 100644
2.3 KB
src/images/notify256.png
0 → 100644
11.3 KB
src/images/npm.png
0 → 100644
490 Bytes
src/images/tapd.png
0 → 100644
1.05 KB
src/images/title32.png
0 → 100644
853 Bytes
src/images/yuque.png
0 → 100644
834 Bytes
src/manifest.json
0 → 100644
src/options/App.vue
0 → 100644
src/options/options.html
0 → 100644
src/options/options.js
0 → 100644
src/popup/App.vue
0 → 100644
src/popup/popup.html
0 → 100644
src/popup/popup.js
0 → 100644
src/popup/router/index.js
0 → 100644
src/popup/router/pages/Index.vue
0 → 100644
src/popup/router/pages/base-web.js
0 → 100644
src/popup/router/pages/four-dev-web.js
0 → 100644
src/popup/router/pages/four-pro-web.js
0 → 100644
src/popup/router/pages/three-dev-web.js
0 → 100644
src/popup/router/pages/three-pro-web.js
0 → 100644
src/popup/router/routes.js
0 → 100644
src/store/actions.js
0 → 100644
src/store/getters.js
0 → 100644
src/store/index.js
0 → 100644
src/store/mutation-types.js
0 → 100644
src/store/mutations.js
0 → 100644
This diff is collapsed.
Click to expand it.
webpack.config.js
0 → 100644
This diff is collapsed.
Click to expand it.