Hugo - the extension you really want!

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

Qu'est-ce que Hugo - the extension you really want! ?

Hugo - the extension you really want! est une extension Chrome développée par FelicianoTech, et sa fonction principale est "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hugo - the extension you really want!

Téléchargez les fichiers d'extension Hugo - the extension you really want! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Hugo - the extension you really want! Hugo - the extension you really want!
ID hbaembbfbmpbjgkgcjcfonnimlekbfea
URL Officiel https://chromewebstore.google.com/detail/hugo-the-extension-you-re/hbaembbfbmpbjgkgcjcfonnimlekbfea
Description Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.
Taille du Fichier 95.3 KB
Nombre d'Installations 40
Version Actuelle v18.11.5
Dernière Mise à Jour 2018-11-14
Date de Publication 2018-11-11
Développeur FelicianoTech
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/felicianotech/hugo-browser-extension
URL de la Page d'Aide https://github.com/felicianotech/hugo-browser-extension/issues
Langues Prises en Charge 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"
    ]
}