Product Hunt Favicon Edition

Add favicons to posts on producthunt.com

Что такое Product Hunt Favicon Edition?

Product Hunt Favicon Edition - это расширение Chrome, разработанное websirnik, и его основная функция - "Add favicons to posts on producthunt.com".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Product Hunt Favicon Edition

Скачайте файлы расширений Product Hunt Favicon Edition в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Favicons are a hidden UX gem. They provide an insight what's behind the hyperlink. This extension made my producthunt.com experience 3x times more efficient. Helps to identify links to click(and not to) by providing a visual expectation in the form of an icon:
 - GitHub icon - Expect dev libraries
 - Amazon icon - Expect retail products
 - App Store / Play Store icons - Expect mobile apps 
 - Kickstarter / Indiegogo icons - Expect crowdfunding campaigns 
 - and so on...

No signup required. Free. Built while watching cat videos.

Ping me if you didn't like this extension: https://twitter.com/nikitakorotaev                    

Основная информация о расширении

Название Product Hunt Favicon Edition Product Hunt Favicon Edition
ID lmbddljbacemiaiplcgkjpngjnpikdeh
Официальный URL https://chrome.google.com/webstore/detail/product-hunt-favicon-edit/lmbddljbacemiaiplcgkjpngjnpikdeh
Описание Add favicons to posts on producthunt.com
Размер файла 48.26 KB
Количество установок 19
Текущая Версия 0.4.1
Последнее Обновление 2014-12-20
Дата публикации 2014-12-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик websirnik
Тип оплаты free
Официальный сайт расширения http://twitter.com/nikitakorotaev
URL страницы помощи http://twitter.com/nikitakorotaev
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Product Hunt Favicon Edition",
    "short_name": "Product Hunt Favicon Edition",
    "description": "Add favicons to posts on producthunt.com",
    "version": "0.4.1",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "*:\/\/www.producthunt.com\/*",
        "*:\/\/ph.nikita.io\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.producthunt.com\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "jquery-observe.min.js",
                "contentscript.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "*:\/\/getfavicon.appspot.com\/*"
    ]
}