Ugly HTTP
Makes HTTP pages conspicuous.
Vad är Ugly HTTP?
Ugly HTTP är en Chrome-tillägg utvecklad av lgarron, och dess huvudfunktion är "Makes HTTP pages conspicuous.".
Tilläggsskärmbilder
Ladda ner Ugly HTTP-förlängningens CRX-fil
Ladda ner Ugly HTTP-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
Officiell webbadress | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
Beskrivning | Makes HTTP pages conspicuous. |
Filstorlek | 14.96 KB |
Antal Installationer | 25 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2018-08-29 |
Publiceringsdatum | 2018-08-28 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | lgarron |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/lgarron/ugly-http-extension |
Hjälpsida URL | https://github.com/lgarron/ugly-http-extension |
Stödda Språk | 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" } } } |