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! هو إضافة Chrome تم تطويرها بواسطة FelicianoTech، والميزة الرئيسية لها هي "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Hugo - the extension you really want!

قم بتنزيل ملفات الامتداد Hugo - the extension you really want! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}