RefundMe
We schedule reminders and pickups for your Amazon orders.
Vad är RefundMe?
RefundMe är en Chrome-tillägg utvecklad av RefundMe, och dess huvudfunktion är "We schedule reminders and pickups for your Amazon orders.".
Tilläggsskärmbilder
Ladda ner RefundMe-förlängningens CRX-fil
Ladda ner RefundMe-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | RefundMe |
ID | nfeoamdpkbpaamidcmapoonhldehbjhc |
Officiell webbadress | https://chromewebstore.google.com/detail/refundme/nfeoamdpkbpaamidcmapoonhldehbjhc |
Beskrivning | We schedule reminders and pickups for your Amazon orders. |
Filstorlek | 50.57 KB |
Antal Installationer | 15 |
Aktuell Version | 1.8 |
Senast Uppdaterad | 2017-07-18 |
Publiceringsdatum | 2017-07-18 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | RefundMe |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://refundme.io |
Hjälpsida URL | http://www.refundme.io |
Stödda Språk | 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 } } |