You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
763 B
37 lines
763 B
{
|
|
"manifest_version": 3,
|
|
"name": "抖音圣火",
|
|
"version": "1.0",
|
|
"description": "控制浏览器打开抖音隐身窗口和指定直播窗口的扩展",
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"windows",
|
|
"cookies",
|
|
"scripting",
|
|
"proxy",
|
|
"webRequest",
|
|
"webRequestAuthProvider",
|
|
"browsingData",
|
|
"webNavigation"
|
|
],
|
|
"host_permissions": [
|
|
"https://douyin.xingtongworld.com/*",
|
|
"https://*.douyin.com/*",
|
|
"https://api64.ipify.org/*",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.douyin.com/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"incognito": "spanning"
|
|
}
|
|
|