31 lines
971 B
JSON
31 lines
971 B
JSON
{
|
|
"name": "Cookie与UserAgent获取",
|
|
"description": "辅助抓取网站登陆后有效Cookies和UserAgent",
|
|
"version": "0.0.3",
|
|
"author": "XIAOMO",
|
|
"homepage_url": "https://www.xiaoapi.com/",
|
|
"permissions": ["contextMenus", "tabs", "storage", "webNavigation", "notifications", "activeTab", "cookies", "<all_urls>", "webRequest", "notifications"],
|
|
"icons": {
|
|
"16": "icon-16.png",
|
|
"48": "icon-48.png",
|
|
"128": "icon-128.png"
|
|
},
|
|
"background": {
|
|
"scripts": ["utils.js"]
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"all_frames": true,
|
|
"run_at": "document_start"
|
|
}],
|
|
"browser_action": {
|
|
"default_icon": "icon-16.png",
|
|
"default_title": "Cookie与UserAgent获取",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"manifest_version": 2,
|
|
"omnibox": {
|
|
"keyword": "xiao"
|
|
}
|
|
} |