Hacker News
Displays recent stories from Hacker News
什麼是Hacker News?
Hacker News是由adam.albrecht開發的Chrome擴展程式,該擴展的主要功能是“Displays recent stories from Hacker News”。
擴展截圖
下載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 擴展基本資訊
| 名稱 | |
| ID | geancnifhbkbjijfkcjjdnfemppmcjmk |
| 官方網址 | 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"
} | |