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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hugo - the extension you really want! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}