Hacker News Notification

Top 30 Hacker News Notification

O que é Hacker News Notification?

Hacker News Notification é uma extensão do Chrome desenvolvida por http://www.maxy.fr, e sua principal característica é "Top 30 Hacker News Notification".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Hacker News Notification

Baixe arquivos de extensão Hacker News Notification no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Receive notification for each new article published in the top 30 of Hacker News.

V2.2 : 2016-08-09 : The notification problem has been fixed
V2.1 :  2014 : Adding indications Up (U), Down  (D) or Equal (=) for the classification.
V2.0 :  2014 : You can now show the list of all articles directly by clicking on the icon on the top right.                    

Informações Básicas da Extensão

Nome Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
URL Oficial https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
Descrição Top 30 Hacker News Notification
Tamanho do Arquivo 525 KB
Contagem de Instalações 11
Versão Atual 2.2
Última Atualização 2016-08-08
Data de Publicação 2016-08-08
Desenvolvedor http://www.maxy.fr
Tipo de Pagamento free
Site da Extensão http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Notification",
    "version": "2.2",
    "manifest_version": 2,
    "description": "Top 30 Hacker News Notification",
    "permissions": [
        "notifications",
        "background",
        "tabs",
        "https:\/\/news.ycombinator.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/logo19.png",
            "38": "img\/logo39.png"
        },
        "default_title": "Hacker News Notification",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/popup.js",
                "js\/background.js"
            ],
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo.png"
    },
    "web_accessible_resources": [
        "js\/background.js"
    ]
}