hckr news
Add functionality to news.ycombinator.com and hckrnews.com
什麼是hckr news?
hckr news是由https://hckrnews.com開發的Chrome擴展程式,該擴展的主要功能是“Add functionality to news.ycombinator.com and hckrnews.com”。
擴展截圖
下載hckr news擴展crx文件
下載hckr news擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The browser extension adds a few features to both Hacker News and hckr news:
* Highlight New Comments
* Identify New Comments on hckrnews.com
* Alexander Kirk's collapsible threads 擴展基本資訊
| 名稱 | |
| ID | mnlaodleonmmfkdhfofamacceeikgecp |
| 官方網址 | https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp |
| 簡介 | Add functionality to news.ycombinator.com and hckrnews.com |
| 檔案大小 | 52.15 KB |
| 安裝次數 | 1,010 |
| 目前版本 | 2.0 |
| 更新時間 | 2020-01-07 |
| 上架時間 | 2020-01-07 |
| 評分 | 4.59/5 共 17 次評分 |
| 開發者 | https://hckrnews.com |
| 付費類型 | free |
| 擴展官網 | http://hckrnews.com/about.html |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "hckr news",
"version": "2.0",
"manifest_version": 2,
"icons": {
"72": "hckrnews-72.png"
},
"description": "Add functionality to news.ycombinator.com and hckrnews.com",
"background": {
"scripts": [
"browser-polyfill.js",
"background-script.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/hckrnews.com\/*"
],
"js": [
"browser-polyfill.js",
"hckr_inject.js"
]
},
{
"matches": [
"*:\/\/news.ycombinator.com\/item*"
],
"js": [
"browser-polyfill.js",
"hn_inject.js",
"jquery-1.7.1.min.js",
"hacker_news_comment_coll.user.js"
]
}
]
} | |