1 Star 0 Fork 0

chenqiyu/pluginDemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
manifest.json 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
tiTest 提交于 2022-04-21 23:32 . 今天天气不错
{
"manifest_version": 2,
"name": "插件Demo",
"version": "2.0.0",
"description": "浏览器插件Demo,线上版本...",
"author": "penk",
"homepage_url": "https://www.baidu.com",
"icons": {
"16": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"browser_action": {
"default_icon": "images/logo.png",
"default_title": "插件Demo",
"default_popup": "./views/popup/main.html"
},
"commands": {
"my-commands": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "this is my command",
"global": true
}
},
"background": {
"page": "./background/background.html"
},
"devtools_page": "./devtools/devtools.html",
"permissions": [
"contextMenus",
"tabs",
"notifications",
"webRequest",
"webRequestBlocking",
"background",
"storage",
"http://*/*",
"https://*/*"
],
"externally_connectable": {
"ids": [
"*"
],
"matches": [
"https://www.baidu.com/*"
]
},
"content_scripts": [
{
"matches": [
"https://www.baidu.com/*"
],
"js": [
"./utils/jquery-3.4.0.min.js",
"./js/index.js"
],
"css": [
"./css/myStyles.css"
],
"run_at": "document_end"
}
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenxqiyu/plugin-demo.git
git@gitee.com:chenxqiyu/plugin-demo.git
chenxqiyu
plugin-demo
pluginDemo
master

搜索帮助