HN Enhance
An extension that enhances news.ycombinator website.
HN Enhanceとは何ですか?
HN EnhanceはAlvaro Bernal Gによって開発されたChromeの拡張機能で、その主な機能は「An extension that enhances news.ycombinator website.」です。
拡張機能のスクリーンショット
HN Enhance拡張機能のCRXファイルをダウンロード
HN Enhance拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features:
- Displays a military rank badge alongside the username. Rank is obtained
according to the following proportion: Karma 1:1 Seniority.
- A minimalist black theme that is easy to to the eyes. 拡張機能の基本情報
| 名前 | |
| ID | dmnbgmcilgmcmlhgjkociikeihbkbcdp |
| 公式URL | https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp |
| 説明 | An extension that enhances news.ycombinator website. |
| ファイルサイズ | 74.79 KB |
| インストール数 | 93 |
| 現在のバージョン | 0.1.0 |
| 最終更新日 | 2019-04-04 |
| 公開日 | 2019-04-04 |
| 評価 | 4.50/5 合計 8 レビュー |
| 開発者 | Alvaro Bernal G |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://alvarobg.com |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HN Enhance",
"manifest_version": 2,
"author": "Alvaro Bernal",
"version": "0.1.0",
"description": "An extension that enhances news.ycombinator website.",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons\/icon-128.png",
"default_title": "HN Enhance"
},
"web_accessible_resources": [
"*.woff",
"*.svg"
],
"icons": {
"16": "icons\/icon-16.png",
"38": "icons\/icon-38.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"http:\/\/news.ycombinator.com\/*",
"https:\/\/news.ycombinator.com\/*"
],
"css": [
"style.css",
"ranks.css"
],
"js": [
"contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
]
} | |