has_many collections

See which collections a product hunt post has been added to

has_many collectionsคืออะไร?

has_many collections เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oelmekki และคุณลักษณะหลักของมันคือ "See which collections a product hunt post has been added to"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย has_many collections

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}