Hacker News Notification

Top 30 Hacker News Notification

Qu'est-ce que Hacker News Notification ?

Hacker News Notification est une extension Chrome développée par http://www.maxy.fr, et sa fonction principale est "Top 30 Hacker News Notification".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hacker News Notification

Téléchargez les fichiers d'extension Hacker News Notification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
URL Officiel https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
Description Top 30 Hacker News Notification
Taille du Fichier 525 KB
Nombre d'Installations 11
Version Actuelle 2.2
Dernière Mise à Jour 2016-08-08
Date de Publication 2016-08-08
Développeur http://www.maxy.fr
Type de Paiement free
Site Web de l'Extension http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
Langues Prises en Charge 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"
    ]
}