34 lines
756 B
JSON
34 lines
756 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "BlurText - 文字模糊保护",
|
|
"version": "1.0.0",
|
|
"description": "屏幕分享和录制时一键模糊敏感文字信息,保护隐私安全",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"css": ["content.css"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|