parse-sahibinden/manifest.json
2024-03-08 16:41:10 +03:00

25 lines
530 B
JSON

{
"manifest_version": 3,
"name": "Parser",
"version": "0.1.0",
"description": "Parser for sahibinden.com",
"action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"matches": ["*://www.sahibinden.com/*"], // Update this line
"js": ["content.js"]
}
]
}