Ugly HTTP
Makes HTTP pages conspicuous.
Was ist Ugly HTTP?
Ugly HTTP ist eine Chrome-Erweiterung, die von lgarron entwickelt wurde, und ihr Hauptmerkmal ist "Makes HTTP pages conspicuous.".
Erweiterungsscreenshots
Ugly HTTP-Erweiterungs-CRX-Datei herunterladen
Laden Sie Ugly HTTP-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
Grundlegende Informationen zur Erweiterung
Name | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
Offizielle URL | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
Beschreibung | Makes HTTP pages conspicuous. |
Dateigröße | 14.96 KB |
Installationsanzahl | 25 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2018-08-29 |
Veröffentlichungsdatum | 2018-08-28 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | lgarron |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lgarron/ugly-http-extension |
Hilfeseite URL | https://github.com/lgarron/ugly-http-extension |
Unterstützte Sprachen | 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" } } } |