{ "manifest_version": 2, "name": "DumbyMap", "version": "1.0", "description": "Add interatctive Map", "icons": { "48": "icons/default.ico" }, "browser_action": { "default_title": "Map-Inline" }, "content_scripts": [ { "matches": [ "*://developer.mozilla.org/*", "*://hackmd.io/*", "*://*.ptt.cc/*", "https://prosemirror.net/examples/*" ], "js": [ "dumbymap.mjs", "index.mjs" ], "css": [ "css/dumbymap.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "scripting", "contextMenus", "" ] }