Local
Find Amazon products locally. Get what you want today, with no shipping cost!
什么是Local?
Local是由berger.m.sophie开发的Chrome扩展程序,该扩展的主要功能是“Find Amazon products locally. Get what you want today, with no shipping cost!”。
扩展截图
下载Local扩展crx文件
下载Local扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an extension that allows users to search for Amazon products in their own surrounding in order to find local stores at which to buy the desired items. 1) Open up the product page on Amazon 2) Click the extension icon in your bookmarks bar 3) See all the relevant stores on a map!
扩展基本信息
名称 | Local |
ID | apdmmfimgdclckmmkjkojbgmeinlloah |
官方URL | https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah |
简介 | Find Amazon products locally. Get what you want today, with no shipping cost! |
文件大小 | 11.91 KB |
安装次数 | 523 |
当前版本 | 2.1 |
更新时间 | 2022-10-07 |
上架时间 | 2022-02-02 |
评分 | 5.00/5 共1次评分 |
开发者 | berger.m.sophie |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Local", "description": "Find Amazon products locally. Get what you want today, with no shipping cost!", "version": "2.1", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.at\/*", "https:\/\/www.amazon.de\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" } } |