Hack the News
A Hacker News icon that notifies you when the top story changes.
什麼是Hack the News?
Hack the News是由github.com/robbiewain開發的Chrome擴展程式,該擴展的主要功能是“A Hacker News icon that notifies you when the top story changes.”。
擴展截圖
下載Hack the News擴展crx文件
下載Hack the News擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Displays a Hacker News icon on your browser that changes color when the top story changes.
Source code at https://github.com/robbiewain/hack-the-news 擴展基本資訊
| 名稱 | |
| ID | oehghgdldepmknikdpjakmpbonlkmnfa |
| 官方網址 | https://chromewebstore.google.com/detail/hack-the-news/oehghgdldepmknikdpjakmpbonlkmnfa |
| 簡介 | A Hacker News icon that notifies you when the top story changes. |
| 檔案大小 | 101 KB |
| 安裝次數 | 60 |
| 目前版本 | 0.1.1 |
| 更新時間 | 2017-12-07 |
| 上架時間 | 2017-12-06 |
| 評分 | 4.75/5 共 4 次評分 |
| 開發者 | github.com/robbiewain |
| 付費類型 | free |
| 擴展官網 | https://github.com/robbiewain/hack-the-news |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hack the News",
"version": "0.1.1",
"manifest_version": 2,
"description": "A Hacker News icon that notifies you when the top story changes.",
"content_security_policy": "script-src 'self' https:\/\/*.firebaseio.com; object-src 'self'",
"icons": {
"16": "images\/hacker-news-16.png",
"128": "images\/hacker-news-128.png"
},
"background": {
"scripts": [
"app.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "images\/hacker-news-19.png",
"38": "images\/hacker-news-38.png"
},
"default_title": "Hack the News",
"default_popup": "index.html"
},
"permissions": [
"storage"
]
} | |