Hacker News +
Stylish Hacker News.
Hacker News +とは何ですか?
Hacker News +はJarquesによって開発されたChromeの拡張機能で、その主な機能は「Stylish Hacker News.」です。
拡張機能のスクリーンショット
Hacker News +拡張機能のCRXファイルをダウンロード
Hacker News +拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With the recent changes to Google's applications, I thought it'd be nice to get Hacker News to fit in nicely.
Any questions / comments contact me on Twitter: @jarques
Update in v2.0:
* Update to manifest v3
* Dark mode switcher
* Remove hot key support
* Improved commenting layouts 拡張機能の基本情報
| 名前 | |
| ID | oieefcckcbbgniifdhhialgkmghahjgl |
| 公式URL | https://chromewebstore.google.com/detail/hacker-news-+/oieefcckcbbgniifdhhialgkmghahjgl |
| 説明 | Stylish Hacker News. |
| ファイルサイズ | 456 KB |
| インストール数 | 191 |
| 現在のバージョン | 2.0 |
| 最終更新日 | 2023-05-28 |
| 公開日 | 2013-08-02 |
| 評価 | 4.38/5 合計 26 レビュー |
| 開発者 | Jarques |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://jarqu.es/dev/HN+/ |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Hacker News +",
"version": "2.0",
"description": "Stylish Hacker News.",
"content_scripts": [
{
"all_frames": true,
"css": [
"style.css"
],
"js": [
"js\/hn.js"
],
"matches": [
"https:\/\/news.ycombinator.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"\/fonts\/*.ttf"
],
"matches": [
"https:\/\/news.ycombinator.com\/*"
]
}
],
"permissions": [
"storage"
]
} | |