Inspect and view changes in malt Freelance Rating 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",
"description": "Chrome extension to rate freelances on malt.fr",
"version": "1.0",
"manifest_version": 3,
"name": "malt Freelance Rating",
"icons": {
"128": "icon-128.png"
},
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"https://www.malt.fr/*"
],
"js": [
"contentScript.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icon-128.png",
"icon-34.png"
],
"matches": []
}
]
}