chrome_extensions/manifest.json

27 lines
632 B
JSON
Raw Normal View History

2024-08-19 09:59:57 +08:00
{
"name": "谷歌自动搜索邮箱自动点击",
"description": "谷歌自动搜索邮箱自动点击",
"version": "1.0.0",
"manifest_version": 2,
"permissions": ["tabs","*://*/*","background"],
"icons": {
"19": "icon64.png",
"48": "icon64.png",
"128": "icon64.png"
},
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [
{
"matches": [
2024-08-19 17:05:34 +08:00
"https://www.naver.com/*","https://www.baidu.com/*"
2024-08-19 09:59:57 +08:00
],
"js": [
"lib/jquery-3.3.1.min.js",
"lib/content.js"
],
"run_at": "document_end"
}
]
}