has_many collections

See which collections a product hunt post has been added to

什么是has_many collections?

has_many collections是由oelmekki开发的Chrome扩展程序,该扩展的主要功能是“See which collections a product hunt post has been added to”。

扩展截图

screenshot

下载has_many collections扩展crx文件

下载has_many collections扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension for Product Hunt users allows them to see, for any product, in which collections it has been added.

This is useful for makers, to see in which collections their product is referred, but also for all other users that may that way discover related products to the one they are currently looking at.

This is a new way to browse Product Hunt and explore its massive database.                    

扩展基本信息

名称 has_many collections has_many collections
ID acofjkhaidlhpdfmcooapmeoebfenggg
官方URL https://chrome.google.com/webstore/detail/hasmany-collections/acofjkhaidlhpdfmcooapmeoebfenggg
简介 See which collections a product hunt post has been added to
文件大小 509 KB
安装次数 16
当前版本 1.4
更新时间 2015-08-21
上架时间 2015-08-21
开发者 oelmekki
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "has_many collections",
    "version": "1.4",
    "manifest_version": 2,
    "description": "See which collections a product hunt post has been added to",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.producthunt.com\/",
        "http:\/\/www.producthunt.com\/"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background_page\/background.js",
            "background_page\/background\/api.js",
            "background_page\/background\/page_action_decider.js",
            "background_page\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/hunting-cabin.cc\/has_many_collections\/authorized*",
                "http:\/\/localhost:3000\/has_many_collections\/authorized*"
            ],
            "js": [
                "content_script\/jquery.js",
                "content_script\/url.js",
                "content_script\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "38": "icon.png"
        },
        "default_popup": "page_action\/main.html"
    }
}