Backseat Hunter

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

什么是Backseat Hunter?

Backseat Hunter是由oelmekki开发的Chrome扩展程序,该扩展的主要功能是“Comment on Product Hunt posts, even with no comment access.”。

扩展截图

screenshot

下载Backseat Hunter扩展crx文件

下载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 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"
        }
    ]
}