Inspect and view changes in Marktvaas 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
{
"manifest_version": 2,
"name": "Marktvaas",
"version": "1.3.2",
"browser_specific_settings": {
"gecko": {
"id": "marktvaas@marktvaas.nonexisting"
}
},
"description": "Enhanced features for marktplaats.nl",
"icons": {
"48": "icons/logo_48.png",
"96": "icons/logo_96.png"
},
"browser_action": {
"default_icon": "icons/logo_32.png",
"default_title": "Marktvaas",
"default_popup": "popup/settings.html"
},
"options_ui": {
"page": "popup/settings.html"
},
"permissions": [
"storage",
"menus",
"webRequest",
"webRequestBlocking",
"https://www.marktplaats.nl/*"
],
"content_scripts": [
{
"matches": [
"https://www.marktplaats.nl/v/*"
],
"js": [
"libs/css.js",
"libs/get_elem.js",
"ad_page.js"
]
},
{
"matches": [
"https://www.marktplaats.nl/q/*",
"https://www.marktplaats.nl/l/*"
],
"js": [
"libs/css.js",
"libs/get_elem.js",
"ad_list.js"
]
}
],
"background": {
"scripts": [
"background.js",
"url_rewrite.js",
"background_blockusers.js"
]
}
}