Hacker News Notification

Top 30 Hacker News Notification

Wat is Hacker News Notification?

Hacker News Notification is een Chrome-extensie ontwikkeld door http://www.maxy.fr, en de belangrijkste functie is "Top 30 Hacker News Notification".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Hacker News Notification

Download Hacker News Notification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
Officiële URL https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
Beschrijving Top 30 Hacker News Notification
Bestandsgrootte 525 KB
Aantal Installaties 11
Huidige Versie 2.2
Laatst Bijgewerkt 2016-08-08
Publicatiedatum 2016-08-08
Ontwikkelaar http://www.maxy.fr
Betalingswijze free
Extensiewebsite http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
Ondersteunde Talen 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"
    ]
}