HN Enhance

An extension that enhances news.ycombinator website.

HN Enhance क्या है?

HN Enhance Alvaro Bernal G द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that enhances news.ycombinator website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HN Enhance एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम HN Enhance HN Enhance
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
        }
    ]
}