Ugly HTTP
Makes HTTP pages conspicuous.
ما هو Ugly HTTP؟
Ugly HTTP هو إضافة Chrome تم تطويرها بواسطة lgarron، والميزة الرئيسية لها هي "Makes HTTP pages conspicuous.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ugly HTTP
قم بتنزيل ملفات الامتداد Ugly HTTP بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } } } |