Etsy tags Extractor
show informations about products of Etsy
Was ist Etsy tags Extractor?
Etsy tags Extractor ist eine Chrome-Erweiterung, die von drsoft development entwickelt wurde, und ihr Hauptmerkmal ist "show informations about products of Etsy".
Erweiterungsscreenshots
Etsy tags Extractor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Etsy tags Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Etsy tags Extractor for showing tags under each product of result of search Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lecdnljkjomppcbamokbmojcbjjkebjj |
| Offizielle URL | https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj |
| Beschreibung | show informations about products of Etsy |
| Dateigröße | 61.6 KB |
| Installationsanzahl | 26 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2022-05-24 |
| Veröffentlichungsdatum | 2022-05-16 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | drsoft development |
| [email protected] | |
| Zahlungsart | in_app |
| Erweiterungswebsite | http://extension.podtrand.com |
| URL der Datenschutzrichtlinien-Seite | http://extension.podtrand.com/privacy-policy |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Etsy tags Extractor",
"description": "show informations about products of Etsy",
"author": "drsoft",
"version": "1.0.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"scripting",
"declarativeContent"
],
"host_permissions": [
"https:\/\/*.etsy.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.etsy.com\/*"
],
"run_at": "document_idle",
"all_frames": true,
"css": [
"contentStyle.css"
],
"js": [
"jquery-3.6.0.min.js",
"script.js"
]
}
],
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_title": "Etsy products info",
"default_icon": {
"16": "\/images\/get_started16.png",
"32": "\/images\/get_started32.png",
"48": "\/images\/get_started48.png",
"128": "\/images\/get_started128.png"
}
},
"icons": {
"16": "\/images\/get_started16.png",
"32": "\/images\/get_started32.png",
"48": "\/images\/get_started48.png",
"128": "\/images\/get_started128.png"
}
} | |