Ugly HTTP
Makes HTTP pages conspicuous.
Hvad er Ugly HTTP?
Ugly HTTP er en Chrome-udvidelse udviklet af lgarron, og dens hovedfunktion er "Makes HTTP pages conspicuous.".
Udvidelsesskærmbilleder
Download Ugly HTTP-udvidelses-CRX-fil
Download Ugly HTTP-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
Grundlæggende oplysninger om udvidelsen
Navn | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
Officiel URL | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
Beskrivelse | Makes HTTP pages conspicuous. |
Filstørrelse | 14.96 KB |
Antal Installationer | 25 |
Nuværende Version | 1.2.0 |
Senest Opdateret | 2018-08-29 |
Udgivelsesdato | 2018-08-28 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | lgarron |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lgarron/ugly-http-extension |
Hjælpeside-URL | https://github.com/lgarron/ugly-http-extension |
Understøttede Sprog | 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" } } } |