Historia sprzedaży ofert na allegro.pl
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": "Allegro Marketflow",
"description": "Historia sprzedaży ofert na allegro.pl",
"version": "1.0",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://allegro.pl/*"
],
"js": [
"js/vendor.js",
"js/content_script.js"
]
}
],
"background": {
"scripts": [
"js/vendor.js",
"js/background.js"
]
},
"permissions": [
"webNavigation",
"storage"
]
}