Hugo - the extension you really want!

Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.

Hugo - the extension you really want! क्या है?

Hugo - the extension you really want! FelicianoTech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more."।

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

screenshot
screenshot

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

crx प्रारूप में Hugo - the extension you really want! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        A Chrome Extension that enhances your browsing experience for Hugo. Right now, the basic features allow you to see when a website you're visiting has been built with Hugo as well as search the Hugo Docs from your Omnibar (address) Bar.

View instructions and source code in the GitHub repository: https://github.com/felicianotech/hugo-browser-extension                    

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

नाम Hugo - the extension you really want! Hugo - the extension you really want!
ID hbaembbfbmpbjgkgcjcfonnimlekbfea
आधिकारिक URL https://chromewebstore.google.com/detail/hugo-the-extension-you-re/hbaembbfbmpbjgkgcjcfonnimlekbfea
विवरण Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.
फ़ाइल का आकार 95.3 KB
स्थापना संख्या 40
वर्तमान संस्करण v18.11.5
अंतिम अपडेट 2018-11-14
प्रकाशन तिथि 2018-11-11
डेवलपर FelicianoTech
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/felicianotech/hugo-browser-extension
सहायता पृष्ठ URL https://github.com/felicianotech/hugo-browser-extension/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hugo - the extension you really want!",
    "short_name": "Hugo",
    "version": "18.11.5.0",
    "version_name": "v18.11.5",
    "description": "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.",
    "author": "Ricardo N Feliciano - https:\/\/www.Feliciano.Tech",
    "homepage_url": "https:\/\/github.com\/felicianotech\/hugo-browser-extension",
    "minimum_chrome_version": "60",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "background": {
        "scripts": [
            "vendor\/algoliasearch-3.24.3.min.js",
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "hugo"
    },
    "page_action": {
        "default_icon": "logo48.png",
        "default_title": "Not built with Hugo."
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.2.1.min.js",
                "hugo-check.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}