Hacker News Notification

Top 30 Hacker News Notification

Apa itu Hacker News Notification?

Hacker News Notification adalah ekstensi Chrome yang dikembangkan oleh http://www.maxy.fr, dan fitur utamanya adalah "Top 30 Hacker News Notification".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Hacker News Notification

Unduh file ekstensi Hacker News Notification dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
URL Resmi https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
Deskripsi Top 30 Hacker News Notification
Ukuran File 525 KB
Jumlah Instalasi 11
Versi Saat Ini 2.2
Terakhir Diperbarui 2016-08-08
Tanggal Publikasi 2016-08-08
Pengembang http://www.maxy.fr
Tipe Pembayaran free
Situs Ekstensi http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
Bahasa yang Didukung 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"
    ]
}