Product Hunt Twitter

Get Product Hunt stats right on your Twitter timeline.

Τι είναι το Product Hunt Twitter;

Το Product Hunt Twitter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rahul Kapoor, και η κύρια λειτουργία του είναι "Get Product Hunt stats right on your Twitter timeline.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Product Hunt Twitter

Λήψη αρχείων επέκτασης Product Hunt Twitter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        *NEW* Fixed no maker bug.

Most of my time over at Twitter is spent finding new products share by Product Hunt or by other makers/hunters such as
Chris Messina, Kevin, Jake, Ryan or Nik vimal but what I always missed was to have some stats that I could get beforehand whenever a new product is shared/posted which lets me know more about the product and how much traction it is getting. With this tool which I have been using for a while now made me want to know more about the product by going to it's PH page than ever before. Whenever a new product is posted the extension will automatically find the details and add a small non-intrusive box on the side of the tweet letting you know more about the product.

Here's what the box contains:
💯 or ⬆️ tells you the total votes the particular product got at the time you're seeing it.
✍ shows the total comments.
and, ✔️ or ❌ shows whether the Product has been featured or not.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Product Hunt Twitter Product Hunt Twitter
ID najoepmopgcmlaecjniajebodcmgijch
Επίσημο URL https://chromewebstore.google.com/detail/product-hunt-twitter/najoepmopgcmlaecjniajebodcmgijch
Περιγραφή Get Product Hunt stats right on your Twitter timeline.
Μέγεθος Αρχείου 104 KB
Αριθμός Εγκαταστάσεων 15
Τρέχουσα Έκδοση 0.2.3
Τελευταία Ενημέρωση 2017-02-07
Ημερομηνία Δημοσίευσης 2017-02-07
Προγραμματιστής Rahul Kapoor
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Product Hunt Twitter",
    "version": "0.2.3",
    "author": "Rahul Kapoor",
    "manifest_version": 2,
    "description": "Get Product Hunt stats right on your Twitter timeline.",
    "permissions": [
        "http:\/\/www.twitter.com\/*",
        "https:\/\/www.twitter.com\/*",
        "https:\/\/api.producthunt.com\/*",
        "notifications",
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "logo16.png",
            "38": "logo48.png"
        }
    },
    "icons": {
        "128": "logo128.png",
        "16": "logo16.png",
        "48": "logo48.png"
    },
    "homepage_url": "https:\/\/github.com\/rahulkapoor90\/ph-twitter",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "css": [
                "PHstyle.css"
            ],
            "js": [
                "jquery.min.js",
                "twitter.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}