Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extensionName__", "version": "1.0.0", "description": "__MSG_extensionDescription__", "permissions": [ "storage" ], "background": { "service_worker": "background.iife.js", "type": "module" }, "action": { "default_popup": "popup\/index.html", "default_title": "Coupon Swap: Easy way to exchange Booking.com coupon codes", "default_icon": "logo-48-v4.png" }, "icons": { "16": "logo-48-v4.png", "48": "logo-48-v4.png", "128": "logo-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/secure.booking.com\/*" ], "js": [ "content-ui\/index.iife.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/www.booking.com\/searchresults*", "https:\/\/sp.booking.com\/searchresults*", "https:\/\/m.booking.com\/searchresults*" ], "js": [ "content\/index.iife.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "*.js", "*.css", "*.png" ], "matches": [ "https:\/\/secure.booking.com\/*" ] }, { "resources": [ "*.js" ], "matches": [ "https:\/\/www.booking.com\/*", "https:\/\/sp.booking.com\/*", "https:\/\/m.booking.com\/*" ] } ] }