RefundMe
We schedule reminders and pickups for your Amazon orders.
什么是RefundMe?
RefundMe是由RefundMe开发的Chrome扩展程序,该扩展的主要功能是“We schedule reminders and pickups for your Amazon orders.”。
扩展截图
下载RefundMe扩展crx文件
下载RefundMe扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When you check out on Amazon, we'll add a return reminder button. Click that and we'll remind you to return your order. We can also schedule pickups and print return labels. You'll never miss a return deadline again, and no more lugging boxes to the UPS store.
扩展基本信息
名称 | RefundMe |
ID | nfeoamdpkbpaamidcmapoonhldehbjhc |
官方URL | https://chromewebstore.google.com/detail/refundme/nfeoamdpkbpaamidcmapoonhldehbjhc |
简介 | We schedule reminders and pickups for your Amazon orders. |
文件大小 | 50.57 KB |
安装次数 | 15 |
当前版本 | 1.8 |
更新时间 | 2017-07-18 |
上架时间 | 2017-07-18 |
评分 | 5.00/5 共1次评分 |
开发者 | RefundMe |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://refundme.io |
帮助页面URL | http://www.refundme.io |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RefundMe", "description": "We schedule reminders and pickups for your Amazon orders.", "version": "1.8", "icons": { "16": "icon-sm.png", "48": "icon-md.png", "128": "icon-lg.png" }, "browser_action": { "default_icon": "icon-md.png", "default_title": "RefundMe", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "img\/*.png" ], "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*" ], "css": [ "custom\/mystyles.css" ], "js": [ "custom\/jquery-3.2.1.min.js", "custom\/myscript.js" ] } ], "background": { "scripts": [ "custom\/eventPage.js" ], "persistent": false } } |