Etsy tags Extractor
show informations about products of Etsy
Wat is Etsy tags Extractor?
Etsy tags Extractor is een Chrome-extensie ontwikkeld door drsoft development, en de belangrijkste functie is "show informations about products of Etsy".
Extensie Screenshots
Download het CRX-bestand van de extensie Etsy tags Extractor
Download Etsy tags Extractor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Etsy tags Extractor for showing tags under each product of result of search
Basisinformatie over de Extensie
Naam | Etsy tags Extractor |
ID | lecdnljkjomppcbamokbmojcbjjkebjj |
Officiële URL | https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj |
Beschrijving | show informations about products of Etsy |
Bestandsgrootte | 61.6 KB |
Aantal Installaties | 26 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2022-05-24 |
Publicatiedatum | 2022-05-16 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | drsoft development |
[email protected] | |
Betalingswijze | in_app |
Extensiewebsite | http://extension.podtrand.com |
URL van de Privacybeleid Pagina | http://extension.podtrand.com/privacy-policy |
Ondersteunde Talen | 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" } } |