Etsy tags Extractor
show informations about products of Etsy
Co to jest Etsy tags Extractor?
Etsy tags Extractor to rozszerzenie Chrome opracowane przez drsoft development, a jego główną funkcją jest „show informations about products of Etsy”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Etsy tags Extractor
Pobierz pliki rozszerzeń Etsy tags Extractor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Etsy tags Extractor for showing tags under each product of result of search Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | lecdnljkjomppcbamokbmojcbjjkebjj |
| Oficjalny URL | https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj |
| Opis | show informations about products of Etsy |
| Rozmiar pliku | 61.6 KB |
| Liczba instalacji | 26 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2022-05-24 |
| Data Publikacji | 2022-05-16 |
| Ocena | 3.00/5 Łącznie 2 Oceny |
| Deweloper | drsoft development |
| [email protected] | |
| Typ Płatności | in_app |
| Strona Rozszerzenia | http://extension.podtrand.com |
| Adres URL Strony Polityki Prywatności | http://extension.podtrand.com/privacy-policy |
| Obsługiwane Języki | 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"
}
} | |