1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-01-27 13:40:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

111 lines
2.6 KiB
JSON
Raw Normal View History

2022-01-25 20:58:23 +08:00
{
"name": "学生助手",
2022-01-25 20:58:23 +08:00
"version": "0.1.0",
"description": "BitDance Chrome Extension",
2022-01-28 15:56:58 +08:00
"manifest_version": 2,
"omnibox": {
"keyword": "ss"
},
"icons": {
"16": "assets/image/logo.png",
"48": "assets/image/logo.png",
"128": "assets/image/logo.png"
},
2022-01-28 17:41:12 +08:00
"background": {
"scripts": [
"assets/js/lib/jquery.min.js",
2022-01-28 18:46:52 +08:00
"assets/js/background.js",
"assets/js/translate/background.js",
2022-02-09 16:56:01 +08:00
"assets/js/remove-google-ads/background_preventAdsScript.js",
"assets/html/pomodoro/background.js",
"assets/js/advanced-search/background.js",
"assets/html/screenshot/background.js"
2022-01-28 17:41:12 +08:00
]
},
2022-01-28 15:56:58 +08:00
"content_scripts": [
{
"matches": [
"<all_urls>",
"*://*/*"
2022-01-28 15:56:58 +08:00
],
"js": [
"assets/js/lib/jquery.min.js",
"assets/js/content.js",
"assets/js/direct-url/url.js",
"assets/js/mouse-effects/click.js",
"assets/js/mouse-effects/mouse-style.js",
"assets/js/advanced-search/content.js"
2022-01-28 15:56:58 +08:00
],
"css": [],
"run_at": "document_start"
},
{
"_______commit": "屏蔽Google广告模块",
2022-02-09 16:56:01 +08:00
"matches": [
"*://*/*"
],
"js": [
"assets/js/remove-google-ads/removeAds.js"
],
"run_at": "document_start"
},
{
"_______commit": "自动展开模块",
"matches": [
"*://blog.csdn.net/*",
"*://www.it1352.com/*"
],
"js": [
"assets/js/lib/jquery.min.js",
2022-02-04 21:47:42 +08:00
"assets/js/expand-full-text/expand.js"
],
"run_at": "document_start"
},
{
"_______commit": "自动搜索模块",
"matches": [
"*://fanyi.qq.com/*",
"*://baike.baidu.com/*",
"*://fanyi.youdao.com/*",
"*://www.cnki.net/*",
"*://qikan.cqvip.com/*",
"*://lib.cqvip.com/*"
],
"js": [
"assets/js/advanced-search/content-helper.js"
],
"run_at": "document_start"
2022-01-28 15:56:58 +08:00
}
],
2022-01-25 20:58:23 +08:00
"browser_action": {
"default_icon": "assets/image/logo.png",
2022-01-28 15:56:58 +08:00
"default_popup": "popup.html",
"default_title": "召唤“学生助手” (Alt+,)"
2022-01-25 20:58:23 +08:00
},
2022-01-28 16:18:43 +08:00
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Comma",
"mac": "Alt+Comma"
},
"description": "打开 [学生助手] 插件"
}
},
"web_accessible_resources": [
"/assets/image/*",
"/assets/html/screenshot/images/*"
],
2022-01-28 15:56:58 +08:00
"permissions": [
"background",
"contextMenus",
"storage",
"webRequest",
2022-02-09 16:56:01 +08:00
"webRequestBlocking",
2022-02-01 17:56:52 +08:00
"tabs",
2022-02-04 20:47:07 +08:00
"activeTab",
2022-02-09 16:56:01 +08:00
"notifications",
"geolocation",
2022-02-09 16:56:01 +08:00
"<all_urls>"
2022-01-28 15:56:58 +08:00
]
2022-02-01 17:56:52 +08:00
}