Etsy tags Extractor
show informations about products of Etsy
Etsy tags Extractorคืออะไร?
Etsy tags Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย drsoft development และคุณลักษณะหลักของมันคือ "show informations about products of Etsy"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Etsy tags Extractor
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |