HN Enhance
An extension that enhances news.ycombinator website.
HN Enhanceคืออะไร?
HN Enhance เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alvaro Bernal G และคุณลักษณะหลักของมันคือ "An extension that enhances news.ycombinator website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HN Enhance
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| อีเมล | [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
}
]
} | |