ASIN Nabber
Grabs the ASIN from a page
什么是ASIN Nabber?
ASIN Nabber是由antecmo开发的Chrome扩展程序,该扩展的主要功能是“Grabs the ASIN from a page”。
扩展截图
下载ASIN Nabber扩展crx文件
下载ASIN Nabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple ASIN extractor.
This tool will quickly extract, one or many Amazon Standard Identification Number (ASIN) from a given Amazon page. Will save collection as you brows, save to clipboard and delte. 扩展基本信息
| 名称 | |
| ID | bgbgkgcfooglepdpgmclmfjcnbaafioe |
| 官方URL | https://chromewebstore.google.com/detail/asin-nabber/bgbgkgcfooglepdpgmclmfjcnbaafioe |
| 简介 | Grabs the ASIN from a page |
| 文件大小 | 18.49 KB |
| 安装次数 | 109 |
| 当前版本 | 1.2 |
| 更新时间 | 2017-06-04 |
| 上架时间 | 2017-06-04 |
| 评分 | 1.50/5 共2次评分 |
| 开发者 | antecmo |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | http://twitter.com/mousedown |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ASIN Nabber",
"description": "Grabs the ASIN from a page",
"version": "1.2",
"icons": {
"16": "grab16.png",
"48": "grab48.png",
"128": "grab128.png"
},
"web_accessible_resources": [
"bomb48.png"
],
"permissions": [
"notifications",
"activeTab"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.amazon.com\/*",
"*:\/\/*.amazon.co.uk\/*"
],
"js": [
"nabber.js"
]
}
],
"browser_action": {
"default_title": "ASIN Nabber",
"default_icon": "grab128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"manifest_version": 2
} | |