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, "name": "Gymr - Stay fit while traveling, by HotelGyms.com", "description": "HotelGyms.com provides the only travel advisory to help you find hotels with great fitness and well-being in seconds.", "version": "2.0.5", "permissions": [ "storage", "tabs", "identity" ], "host_permissions": [ "*:\/\/*.booking.com\/*", "*:\/\/*.kayak.com\/*", "*:\/\/*.momondo.com\/*", "*:\/\/*.hotelplanner.com\/*", "*:\/\/*.expedia.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/gymr-icon_16x16.png", "48": "assets\/gymr-icon_48x48.png", "128": "assets\/gymr-icon_128x128.png" } }, "icons": { "16": "assets\/gymr-icon_16x16.png", "48": "assets\/gymr-icon_48x48.png", "128": "assets\/gymr-icon_128x128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.booking.com\/*" ], "js": [ "booking.js" ] }, { "matches": [ "<all_urls>" ], "include_globs": [ "*:\/\/*.kayak.*\/*", "*:\/\/*.momondo.*\/*" ], "js": [ "kayak.js" ] }, { "matches": [ "<all_urls>" ], "include_globs": [ "*:\/\/*.hotelplanner.com\/*" ], "js": [ "hotelplanner.js" ] }, { "matches": [ "*:\/\/*.expedia.com\/*" ], "js": [ "expedia.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/*", "images\/*", "*.woff2", "*.woff", "*.ttf" ], "matches": [ "<all_urls>" ] } ] }