Etsy tags Extractor
show informations about products of Etsy
什麼是Etsy tags Extractor?
Etsy tags Extractor是由drsoft development開發的Chrome擴展程式,該擴展的主要功能是“show informations about products of Etsy”。
擴展截圖
下載Etsy tags Extractor擴展crx文件
下載Etsy tags Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Etsy tags Extractor for showing tags under each product of result of search
擴展基本資訊
名稱 | Etsy tags Extractor |
ID | lecdnljkjomppcbamokbmojcbjjkebjj |
官方網址 | https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj |
簡介 | show informations about products of Etsy |
檔案大小 | 61.6 KB |
安裝次數 | 26 |
目前版本 | 1.0.1 |
更新時間 | 2022-05-24 |
上架時間 | 2022-05-16 |
評分 | 3.00/5 共 2 次評分 |
開發者 | drsoft development |
電子郵箱 | [email protected] |
付費類型 | in_app |
擴展官網 | http://extension.podtrand.com |
隱私政策頁面URL | http://extension.podtrand.com/privacy-policy |
支援的語言 | 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" } } |