Ugly HTTP
Makes HTTP pages conspicuous.
Cos'è Ugly HTTP?
Ugly HTTP è un'estensione di Chrome sviluppata da lgarron, e la sua funzione principale è "Makes HTTP pages conspicuous.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ugly HTTP
Scarica i file di estensione Ugly HTTP in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
Informazioni di Base sull'Estensione
Nome | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
URL Ufficiale | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
Descrizione | Makes HTTP pages conspicuous. |
Dimensione del File | 14.96 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2018-08-29 |
Data di Pubblicazione | 2018-08-28 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | lgarron |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/lgarron/ugly-http-extension |
URL della Pagina di Aiuto | https://github.com/lgarron/ugly-http-extension |
Lingue Supportate | 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" } } } |