Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Что такое Backseat Hunter?
Backseat Hunter - это расширение Chrome, разработанное oelmekki, и его основная функция - "Comment on Product Hunt posts, even with no comment access.".
Снимки экрана расширения
Скачать файл CRX расширения Backseat Hunter
Скачайте файлы расширений Backseat Hunter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows anyone to discuss products on Product Hunt. When browsing a product page, you will see the extension appear in your url bar. Click it, and this will open a popup to comment the product on disqus, without leaving page.
Основная информация о расширении
Название | Backseat Hunter |
ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
Официальный URL | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
Описание | Comment on Product Hunt posts, even with no comment access. |
Размер файла | 49.38 KB |
Количество установок | 18 |
Текущая Версия | 1.6 |
Последнее Обновление | 2015-11-20 |
Дата публикации | 2015-11-20 |
Разработчик | oelmekki |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Backseat Hunter", "version": "1.6", "manifest_version": 2, "description": "Comment on Product Hunt posts, even with no comment access.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab" ], "background": { "persistent": false, "scripts": [ "background_page\/main.js" ] }, "page_action": { "default_icon": { "38": "icon.png" }, "default_popup": "page_action\/main.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.producthunt.com\/*", "https:\/\/www.producthunt.com\/*" ], "js": [ "content_script\/main.js" ], "run_at": "document_end" } ] } |