Makerbird

Passively add Product Hunt profile link in twitter bios you visit.

Was ist Makerbird?

Makerbird ist eine Chrome-Erweiterung, die von oelmekki entwickelt wurde, und ihr Hauptmerkmal ist "Passively add Product Hunt profile link in twitter bios you visit.".

Erweiterungsscreenshots

screenshot

Makerbird-Erweiterungs-CRX-Datei herunterladen

Laden Sie Makerbird-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extensions allows to see, when browsing other users pages on twitter, if they are Product Hunt users or not.

If you visit a Product Hunt user, a link to their PH profile page will appear.

Additionally, if the user is a maker, you will see how many products they made directly in Twitter bio.                    

Grundlegende Informationen zur Erweiterung

Name Makerbird Makerbird
ID omiplbjehgojeahjpggcdcmcachnhkol
Offizielle URL https://chrome.google.com/webstore/detail/omiplbjehgojeahjpggcdcmcachnhkol
Beschreibung Passively add Product Hunt profile link in twitter bios you visit.
Dateigröße 18.45 KB
Installationsanzahl 25
Aktuelle Version 1.4.2
Letztes Update 2016-05-02
Veröffentlichungsdatum 2016-05-01
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler oelmekki
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Makerbird",
    "version": "1.4.2",
    "manifest_version": 2,
    "description": "Passively add Product Hunt profile link in twitter bios you visit.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/www.producthunt.com\/",
        "http:\/\/www.producthunt.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content_script\/fetcher.js",
                "content_script\/profile_block.js",
                "content_script\/maker_bird.js",
                "content_script\/main.js"
            ],
            "run_at": "document_end"
        }
    ]
}