Wishlist Total
amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Что такое Wishlist Total?
Wishlist Total - это расширение Chrome, разработанное crimsonfae, и его основная функция - "amazon wishlist total chrome extension, totals all items in wishlist and displays the total".
Скачать файл CRX расширения Wishlist Total
Скачайте файлы расширений Wishlist Total в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Основная информация о расширении
Название | |
ID | efcojkbaeocjjmdhbdcdkadnccmjbgog |
Официальный URL | https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog |
Описание | amazon wishlist total chrome extension, totals all items in wishlist and displays the total |
Размер файла | 82.81 KB |
Количество установок | 98 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-02-05 |
Дата публикации | 2014-02-05 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | crimsonfae |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/howaboutudance/wishlist-total |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wishlist Total", "version": "1.0", "author": "Michael Penhallegon", "page_action": { "default_icon": "static\/wishlist.png", "default_popup": "popup.html" }, "background": { "script": [ ".\/js\/background.js" ], "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.amazon.com\/gp\/registry*" ], "js": [ ".\/lib\/jquery-2.0.3.js", ".\/js\/content.js" ] } ], "permissions": [ "tabs", "storage", "http:\/\/amazon.com\/*", "http:\/\/www.amazon.com\/gp\/registry\/*" ] } |