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 扩展基本信息
| 名称 | |
| 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"
}
} | |