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 |
Eメール | [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 } } |