Ugly HTTP
Makes HTTP pages conspicuous.
Apa itu Ugly HTTP?
Ugly HTTP adalah ekstensi Chrome yang dikembangkan oleh lgarron, dan fitur utamanya adalah "Makes HTTP pages conspicuous.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Ugly HTTP
Unduh file ekstensi Ugly HTTP dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
Informasi Dasar Ekstensi
Nama | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
URL Resmi | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
Deskripsi | Makes HTTP pages conspicuous. |
Ukuran File | 14.96 KB |
Jumlah Instalasi | 25 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2018-08-29 |
Tanggal Publikasi | 2018-08-28 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | lgarron |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/lgarron/ugly-http-extension |
URL Halaman Bantuan | https://github.com/lgarron/ugly-http-extension |
Bahasa yang Didukung | 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" } } } |