Ugly HTTP

Makes HTTP pages conspicuous.

Ugly HTTP là gì?

Ugly HTTP là một tiện ích mở rộng Chrome được phát triển bởi lgarron, và tính năng chính của nó là "Makes HTTP pages conspicuous.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ugly HTTP

Tải xuống các tệp mở rộng Ugly HTTP 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

                        Makes HTTP pages conspicous.

By default, HTTP pages are faded. Multiple themes are available:

- faded
- grayscale
- sepia
- wide-blur
- overexposed
- red
- blue
- flip-hue                    

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

Tên Ugly HTTP Ugly HTTP
ID mlneofdamjbcmahdcjjbmbjomedanhal
URL Chính Thức https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal
Mô tả Makes HTTP pages conspicuous.
Kích Thước Tệp 14.96 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2018-08-29
Ngày Phát Hành 2018-08-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lgarron
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lgarron/ugly-http-extension
URL Trang Trợ Giúp https://github.com/lgarron/ugly-http-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ugly HTTP",
    "description": "Makes HTTP pages conspicuous.",
    "author": "Lucas Garron (@lgarron)",
    "version": "1.2.0",
    "icons": {
        "128": "images\/extensionIcon-128px.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/extensionIcon-128px.png"
        },
        "default_popup": "popup.html",
        "default_title": "Undo"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "ugly.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "command.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "commands": {
        "go-secure": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Command+S"
            },
            "description": "Switch to HTTPS"
        }
    }
}