dont-stop/manifest.json
2025-02-04 17:50:43 +09:00

33 lines
913 B
JSON

{
"manifest_version": 3,
"name": "Dont Stop",
"version": "5.2",
"description": "文字に疲れた全ての人に捧げる拡張機能です。Ctrlとドット(.)を同時押ししてテキストのない世界へダイブしよう。",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [],
"js": [
"content-script.js"
]
}
],
"commands": {
"toggle-content-script": {
"suggested_key": {
"default": "Ctrl+Period",
"mac": "MacCtrl+Period"
},
"description": "有効/無効を切り替えるZE☆"
}
},
"permissions": [
"activeTab",
"storage"
]
}