Backseat Hunter

Comment on Product Hunt posts, even with no comment access.

O que é Backseat Hunter?

Backseat Hunter é uma extensão do Chrome desenvolvida por oelmekki, e sua principal característica é "Comment on Product Hunt posts, even with no comment access.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Backseat Hunter

Baixe arquivos de extensão Backseat Hunter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Backseat Hunter Backseat Hunter
ID dijkinlhigijhhcgjnocgnefgaolkhgm
URL Oficial https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm
Descrição Comment on Product Hunt posts, even with no comment access.
Tamanho do Arquivo 49.38 KB
Contagem de Instalações 18
Versão Atual 1.6
Última Atualização 2015-11-20
Data de Publicação 2015-11-20
Desenvolvedor oelmekki
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}