{ "manifest_version": 2, "name": "get-booru-urls", "description": "Gets all image source URLs of open booru tabs and then closes them", "version": "1.0", "background": { "scripts": ["background.js"] }, "browser_action": { "default_title": "Get Booru URLs" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": ["*://danbooru.donmai.us/posts/*"], "js": ["danbooru.js"] } ] }