Inspect and view changes in The Direct Room source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "The Direct Room",
"description": "The Direct Room - find discounts at over 200,000 hotels,",
"version": "1.0.6",
"manifest_version": 3,
"permissions": [
"tabs",
"activeTab",
"scripting"
],
"host_permissions": [
"https://www.booking.com/*",
"https://www.agoda.com/*",
"https://www.airbnb.com/*",
"https://www.trip.com/*",
"https://*.trip.com/*",
"https://www.tiket.com/*",
"https://www.expedia.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.booking.com/*",
"https://www.agoda.com/*",
"https://www.airbnb.com/*",
"https://www.trip.com/*",
"https://*.trip.com/*",
"https://www.tiket.com/*",
"https://www.expedia.com/*"
],
"js": [
"js/jquery.min.js",
"content.js",
"/js/page-inject.js"
]
}
],
"icons": {
"16": "/images/icons/logo-16.png",
"32": "/images/icons/logo-32.png",
"48": "/images/icons/logo-48.png",
"128": "/images/icons/logo-128.png"
},
"action": {
"default_popup": "index.html",
"default_icon": "logo.png"
}
}