URL Shortener for Amazon
This is a Chrome extension that copies Amazon URL to a clipboard in an abbreviation.
什么是URL Shortener for Amazon?
URL Shortener for Amazon是由dadadadone开发的Chrome扩展程序,该扩展的主要功能是“This is a Chrome extension that copies Amazon URL to a clipboard in an abbreviation.”。
扩展截图
下载URL Shortener for Amazon扩展crx文件
下载URL Shortener for Amazon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It is corresponding to 13 countries’ Amazon. This is a Chrome extension that copies Amazon URL to a clipboard in an abbreviation. (Please note that if amazon change url specification, there is a possibility that urls this extension made doesn't work.) You can create an abbreviation from the context menu that comes out when you right-click on a product page. You can also assign a shortcut key to each function from “Keyboard shortcuts” at the bottom of “Settings / Extensions.” =================================== Functions You Can Use - Create a shortened URL - Create a shortened URL (with page title) - Copy a product title Option - Can select whether or not to remove WWW from URL - Switch display and non-display of completion notice - Correspond to assigning shortcut key =================================== Eg. - original URL https://www.amazon.co.jp/JavaScript-Good-Parts-ebook/dp/B0026OR2ZY/ref=tmm_kin_swatch_0?_encoding=UTF8&qid=&sr= - Create a shortened URL https://www.amazon.com/dp/B0026OR2ZY - Create a shortened URL (with page title) JavaScript: The Good Parts: The Good Parts 1, Douglas Crockford, eBook - Amazon.com https://www.amazon.com/dp/B0026OR2ZY - Create a shortened URL(with remove WWW option) https://amazon.com/dp/B0026OR2ZY - Copy a product title JavaScript: The Good Parts: The Good Parts 1, Douglas Crockford, eBook - Amazon.com =================================== It is corresponding to 13 countries’ Amazon. Australia - Brazil - Canada - China - France Germany - India - Italy - Japan - Mexico Netherlands - Spain - United Kingdom =================================== Changelog Ver 0.9.15 Deleted unnecessary permission from manifest.json. Ver 0.9.14 Fixed URL permissions. ver 0.9.13 Deleted unnecessary functions. ver 0.9.11 Deleted adding amazon associate id function. ver 0.9.10 Changed max length of associate ID. ver 0.9.9 Changed max length of associate ID. ver 0.9.8 Bugfix. Fixed problem that create "with associate ID" type url. ver 0.9.7 I changed not to display an update information page on my website. ver 0.9.6 Bugfix. Change URL text from http to https. (thanks for comment about this problem) ver 0.9.5 Deleted Modify URL on an address bar function. ver 0.9.4 Restored "URL with associate ID" and fixed URL. This is test function. Please use at your own risk. https://affiliate-program.amazon.com/gp/associates/network/tools/link-checker/main.html Please check above site for correct url. If you are not in US, please use amazon Link checker for your country. ver 0.9.3 "URL with associate ID" didn't work properly. so abolished it. https://affiliate-program.amazon.com/gp/associates/network/tools/link-checker/main.html
Please check above site for correct url. ver 0.9.2 Changed the extension default name I overlooked on ver 0.9.1. ver 0.9.1 Changed the extension title. ver 0.9 Bug fixed popup icon. ver 0.8 Supported Chrome ver.49 ver 0.7 Fixed text. ver 0.6 Added "modifying URL on an address bar" feature ver 0.5 Added "copying product title" function ver 0.4 Can create URL without www ver 0.3 Fixed a problem that did not work properly in a particular URL ver 0.2 Modified a design of completion notice =================================== The creators do not assume any responsibility on any damages, which users receive by using this extension. =================================== You can find me here: Web: http://dadadadone.com
扩展基本信息
名称 | URL Shortener for Amazon |
ID | ipafcflbnpkfahilfblbenfabkoaaiid |
官方URL | https://chromewebstore.google.com/detail/url-shortener-for-amazon/ipafcflbnpkfahilfblbenfabkoaaiid |
简介 | This is a Chrome extension that copies Amazon URL to a clipboard in an abbreviation. |
文件大小 | 53.89 KB |
安装次数 | 13,412 |
当前版本 | 0.9.15 |
更新时间 | 2022-08-16 |
上架时间 | 2019-04-02 |
评分 | 4.00/5 共16次评分 |
开发者 | dadadadone |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://dadadadone.com |
支持的语言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "0.9.15", "manifest_version": 2, "description": "__MSG_extDescription__", "default_locale": "en", "permissions": [ "activeTab", "tabs", "contextMenus", "storage", "http:\/\/www.amazon.co.jp\/*", "https:\/\/www.amazon.co.jp\/*", "http:\/\/www.amazon.com\/*", "https:\/\/www.amazon.com\/*", "http:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.co.uk\/*", "http:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.fr\/*", "http:\/\/www.amazon.de\/*", "https:\/\/www.amazon.de\/*", "http:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.ca\/*", "http:\/\/www.amazon.cn\/*", "https:\/\/www.amazon.cn\/*", "http:\/\/www.amazon.it\/*", "https:\/\/www.amazon.it\/*", "http:\/\/www.amazon.es\/*", "https:\/\/www.amazon.es\/*", "http:\/\/www.amazon.com.br\/*", "https:\/\/www.amazon.com.br\/*", "http:\/\/www.amazon.in\/*", "https:\/\/www.amazon.in\/*", "http:\/\/www.amazon.com.mx\/*", "https:\/\/www.amazon.com.mx\/*", "http:\/\/www.amazon.au\/*", "https:\/\/www.amazon.au\/*", "http:\/\/www.amazon.nl\/*", "https:\/\/www.amazon.nl\/*" ], "icons": { "16": "icon\/icon_16.png", "48": "icon\/icon_48.png", "128": "icon\/icon_128.png" }, "background": { "scripts": [ "js\/lib\/jquery-2.1.4.min.js", "js\/background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon\/icon_48.png", "default_title": "URL Shortener for Amazon", "default_popup": "popup.html" }, "commands": { "myCommand1": { "description": "__MSG_extCommand1__" }, "myCommand2": { "description": "__MSG_extCommand2__" }, "myCommand5": { "description": "__MSG_extCommand5__" } } } |