RefundMe
We schedule reminders and pickups for your Amazon orders.
Что такое RefundMe?
RefundMe - это расширение Chrome, разработанное RefundMe, и его основная функция - "We schedule reminders and pickups for your Amazon orders.".
Снимки экрана расширения
Скачать файл CRX расширения RefundMe
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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
}
} | |