chrome_extensions/manifest.json

27 lines
619 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": {
2024-08-22 14:06:42 +08:00
"scripts": ["lib/jquery-3.3.1.min.js","js/background.js"]
2024-08-19 09:59:57 +08:00
},
"content_scripts": [
{
"matches": [
2024-08-22 14:06:42 +08:00
"<all_urls>"
2024-08-19 09:59:57 +08:00
],
"js": [
"lib/jquery-3.3.1.min.js",
"lib/content.js"
],
"run_at": "document_end"
}
]
}