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.
chinese-programmer-wrong-pr.../tools/chromium_extension/manifest.json

35 lines
1.1 KiB

{
"name": "chinese-programmer-wrong-pronunciation-chromium-extension",
"version": "0.1.0",
"manifest_version": 3,
"description": "README.md 页面无跳转 即可听正确读音",
"content_scripts": [
{
"matches": [
"*://*/shimohq/chinese-programmer-wrong-pronunciation/*"
],
"run_at": "document_end",
"js": ["js/content-script.js"]
}
],
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"*://github.com/*",
"*://localhost:*/*"
],
"declarative_net_request" : {
"rule_resources" : [
{
"id": "remove_content_security_policy",
"enabled": true,
"path": "rules/remove_content_security_policy.json"
}
]
},
"author": "https://github.com/jingjingxyk",
"homepage_url": "https://github.com/shimohq/chinese-programmer-wrong-pronunciation.git"
}