HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
ما هو HTTP - HTTPS Toggle؟
HTTP - HTTPS Toggle هو إضافة Chrome تم تطويرها بواسطة Mayank Singhal، والميزة الرئيسية لها هي "This extension toggles the current tab's URL between http and https.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HTTP - HTTPS Toggle
قم بتنزيل ملفات الامتداد HTTP - HTTPS Toggle بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Toggle between http and https URLs of the current tab by a single click. Code available at https://github.com/mayanksinghal/toggle-https with images in case you want to pack this yourself.
معلومات أساسية عن التمديد
الاسم | HTTP - HTTPS Toggle |
ID | dlfpljbhokbnchngpchnfkeopkgfofej |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
الوصف | This extension toggles the current tab's URL between http and https. |
حجم الملف | 14.69 KB |
عدد التثبيتات | 184 |
النسخة الحالية | 1.0 |
آخر تحديث | 2013-06-18 |
تاريخ النشر | 2013-06-17 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Mayank Singhal |
نوع الدفع | free |
موقع الإضافة | https://github.com/mayanksinghal/toggle-https |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTTP - HTTPS Toggle", "description": "This extension toggles the current tab's URL between http and https.", "manifest_version": 2, "version": "1.0", "icons": { "16": "toggle-16.png", "48": "toggle-48.png", "128": "toggle-128.png" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Toggle HTTP\/HTTPS", "default_icon": "toggle-32.png" } } |