Flybooking web application
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",
"manifest_version": 2,
"name": "Flybooking",
"description": "Flybooking web application",
"version": "1.0",
"background": {
"scripts": [
"popup.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://www.flybooking.com/*",
"http://flybookingst.caxita.ca/*",
"http://localhost:8555/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "img/favicon.png"
}
}