Product Hunt Mentions

Mention autocomplete for users, posts and products inside comments on Product Hunt (www.producthunt.com)

Co to jest Product Hunt Mentions?

Product Hunt Mentions to rozszerzenie Chrome opracowane przez Moritz Kobrna, a jego główną funkcją jest „Mention autocomplete for users, posts and products inside comments on Product Hunt (www.producthunt.com)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Product Hunt Mentions

Pobierz pliki rozszerzeń Product Hunt Mentions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension makes it easy to search for users or posts on Product Hunt and insert an appropriate @username or link to an post.

Start with an @ for user search and # for posts.

Have fun!                    

Podstawowe informacje o rozszerzeniu

Nazwa Product Hunt Mentions Product Hunt Mentions
ID odfaplafjjgjigjapkjifaogcblcjbpg
Oficjalny URL https://chromewebstore.google.com/detail/product-hunt-mentions/odfaplafjjgjigjapkjifaogcblcjbpg
Opis Mention autocomplete for users, posts and products inside comments on Product Hunt (www.producthunt.com)
Rozmiar pliku 95.62 KB
Liczba instalacji 19
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2017-12-18
Data Publikacji 2017-12-18
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Moritz Kobrna
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Product Hunt Mentions",
    "description": "Mention autocomplete for users, posts and products inside comments on Product Hunt (www.producthunt.com)",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon128.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/*.producthunt.com\/*"
            ],
            "js": [
                "js\/content_script.js",
                "js\/jquery.textcomplete.js"
            ],
            "css": [
                "css\/content_styles.css"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.algolia.net\/*",
        "*:\/\/api.producthunt.com\/*"
    ]
}