Inspect and view changes in FleetRunnr 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",
"manifest_version": 2,
"name": "FleetRunnr",
"version": "1.1.0",
"description": "Dispatch your orders with FleetRunnr",
"author": "JIT Technology SARL",
"homepage_url": "https://api.fleetrunnr.com",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "FleetRunnr",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"*://*.zomato.com/*"
],
"js": [
"inject.js",
"zomato.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"authenticate.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https://unpkg.com/; object-src 'self'"
}