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! là gì?

Hugo - the extension you really want! là một tiện ích mở rộng Chrome được phát triển bởi FelicianoTech, và tính năng chính của nó là "Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hugo - the extension you really want!

Tải xuống các tệp mở rộng Hugo - the extension you really want! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hugo - the extension you really want! Hugo - the extension you really want!
ID hbaembbfbmpbjgkgcjcfonnimlekbfea
URL Chính Thức https://chromewebstore.google.com/detail/hugo-the-extension-you-re/hbaembbfbmpbjgkgcjcfonnimlekbfea
Mô tả Browser enhancements for Hugo users. Shows you if sites are built with Hugo, Docs search, and more.
Kích Thước Tệp 95.3 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại v18.11.5
Cập Nhật Lần Cuối 2018-11-14
Ngày Phát Hành 2018-11-11
Nhà Phát Triển FelicianoTech
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/felicianotech/hugo-browser-extension
URL Trang Trợ Giúp https://github.com/felicianotech/hugo-browser-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}