Files
vendoo/extension/manifest.json
T
Masterluke77andGitHub 6f48827f4d Vendoo 1.41.2 – Git Ignore Boundary & Module Tracking Hotfix (#18)
* docs: prepare Vendoo 1.41.2 git-ignore boundary hotfix

* fix: track native source modules with root-anchored runtime ignores
2026-07-09 17:09:00 +02:00

58 lines
1.3 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"manifest_version": 3,
"name": "Vendoo Link Vinted Assistant",
"version": "1.9.0",
"description": "Vendoo Link mit sicherem Vinted-Auto-Fill, eindeutiger Feldzuordnung, Bildtransfer und Publishing.",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"http://localhost:8124/*",
"http://127.0.0.1:8124/*",
"https://www.vinted.de/*",
"https://www.vinted.fr/*",
"https://www.vinted.co.uk/*",
"https://www.vinted.com/*",
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.vinted.de/*",
"https://www.vinted.fr/*",
"https://www.vinted.co.uk/*",
"https://www.vinted.com/*"
],
"js": [
"vinted-categories.js",
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Vendoo Assistant",
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}