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"
}