Ugly HTTP
Makes HTTP pages conspicuous.
What is Ugly HTTP?
Ugly HTTP is a Chrome extension developed by lgarron, and its main feature is "Makes HTTP pages conspicuous.".
Extension Screenshots
Download Ugly HTTP Extension CRX File
Download Ugly HTTP extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
Extension Basic Information
Name | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
Official URL | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
Description | Makes HTTP pages conspicuous. |
File Size | 14.96 KB |
Installation Count | 25 |
Current Version | 1.2.0 |
Last Updated | 2018-08-29 |
Publish Date | 2018-08-28 |
Rating | 5.00/5 Total 2 Ratings |
Developer | lgarron |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lgarron/ugly-http-extension |
Help Page URL | https://github.com/lgarron/ugly-http-extension |
Supported Languages | 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" } } } |