youshi/expand/ert/manifest.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2024-07-03 13:41:30 +08:00
{
"manifest_version": 2,
2024-07-10 18:47:16 +08:00
"name": "优势管家登录器",
2024-07-03 13:41:30 +08:00
"version": "1.0",
"content_security_policy": "script-src 'self'; object-src 'self';",
"description": "This is a sample Chrome extension.",
"browser_action": {},
"content_scripts": [
{
"matches": [
"*://e.waimai.meituan.com/*",
"*://shangoue.meituan.com/*",
"*://melody.shop.ele.me/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"injected.js"
],
"permissions": [
"nativeMessaging",
"tabs",
"notifications",
"webRequest",
"webRequestBlocking",
"storage",
"http://*/*",
"https://*/*",
"unlimitedStorage",
"idle",
"webNavigation",
"contextMenus",
"clipboardWrite",
"cookies",
"declarativeContent",
"<all_urls>"
]
}