Hugo - the extension you really want!

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

Cos'è Hugo - the extension you really want!?

Hugo - the extension you really want! è un'estensione di Chrome sviluppata da FelicianoTech, e la sua funzione principale è "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Hugo - the extension you really want!

Scarica i file di estensione Hugo - the extension you really want! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Hugo - the extension you really want! Hugo - the extension you really want!
ID hbaembbfbmpbjgkgcjcfonnimlekbfea
URL Ufficiale https://chromewebstore.google.com/detail/hugo-the-extension-you-re/hbaembbfbmpbjgkgcjcfonnimlekbfea
Descrizione Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.
Dimensione del File 95.3 KB
Conteggio Installazioni 40
Versione Corrente v18.11.5
Ultimo Aggiornamento 2018-11-14
Data di Pubblicazione 2018-11-11
Sviluppatore FelicianoTech
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/felicianotech/hugo-browser-extension
URL della Pagina di Aiuto https://github.com/felicianotech/hugo-browser-extension/issues
Lingue Supportate 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"
    ]
}