Hacker News

Displays recent stories from Hacker News

Hacker Newsとは何ですか?

Hacker Newsはadam.albrechtによって開発されたChromeの拡張機能で、その主な機能は「Displays recent stories from Hacker News」です。

拡張機能のスクリーンショット

screenshot

Hacker News拡張機能のCRXファイルをダウンロード

Hacker News拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension displays the latest articles from Y Combinator's Hacker News (news.ycombinator.com).  It also allows you to submit your current tab to Hacker News and perform a search of past Hacker News stories.

Have any bugs or suggestions?  Log them here:  http://github.com/adamalbrecht/hacker-news-for-chrome/issues                    

拡張機能の基本情報

名前 Hacker News Hacker News
ID geancnifhbkbjijfkcjjdnfemppmcjmk
公式URL https://chromewebstore.google.com/detail/hacker-news/geancnifhbkbjijfkcjjdnfemppmcjmk
説明 Displays recent stories from Hacker News
ファイルサイズ 25.31 KB
インストール数 1,344
現在のバージョン 3.21.0
最終更新日 2020-03-11
公開日 2020-03-10
評価 4.56/5 合計 36 レビュー
開発者 adam.albrecht
支払い方法 free
拡張機能のウェブサイト https://www.adamalbrecht.com
ヘルプページのURL https://github.com/adamalbrecht/hacker-news-for-chrome
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News",
    "version": "3.21.0",
    "description": "Displays recent stories from Hacker News",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Hacker News",
        "default_icon": "icon18.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "https:\/\/news.ycombinator.com\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com; object-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com"
}