Ugly HTTP
Makes HTTP pages conspicuous.
Ugly HTTPคืออะไร?
Ugly HTTP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lgarron และคุณลักษณะหลักของมันคือ "Makes HTTP pages conspicuous."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ugly HTTP
ดาวน์โหลดไฟล์ส่วนขยาย Ugly HTTP ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
คำอธิบาย | Makes HTTP pages conspicuous. |
ขนาดไฟล์ | 14.96 KB |
จำนวนการติดตั้ง | 25 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2018-08-29 |
วันที่เผยแพร่ | 2018-08-28 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | lgarron |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lgarron/ugly-http-extension |
URL หน้าช่วยเหลือ | https://github.com/lgarron/ugly-http-extension |
ภาษาที่รองรับ | 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" } } } |