Etsy tags Extractor
show informations about products of Etsy
Vad är Etsy tags Extractor?
Etsy tags Extractor är en Chrome-tillägg utvecklad av drsoft development, och dess huvudfunktion är "show informations about products of Etsy".
Tilläggsskärmbilder
Ladda ner Etsy tags Extractor-förlängningens CRX-fil
Ladda ner Etsy tags Extractor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Etsy tags Extractor for showing tags under each product of result of search Grundläggande Information om Tillägg
| Namn | |
| ID | lecdnljkjomppcbamokbmojcbjjkebjj |
| Officiell webbadress | https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj |
| Beskrivning | show informations about products of Etsy |
| Filstorlek | 61.6 KB |
| Antal Installationer | 26 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2022-05-24 |
| Publiceringsdatum | 2022-05-16 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | drsoft development |
| E-post | [email protected] |
| Betalningssätt | in_app |
| Tilläggswebbplats | http://extension.podtrand.com |
| URL till Sekretesspolicy Sidan | http://extension.podtrand.com/privacy-policy |
| Stödda Språk | 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"
}
} | |