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