HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
什么是HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle是由Mayank Singhal开发的Chrome扩展程序,该扩展的主要功能是“This extension toggles the current tab's URL between http and https.”。
扩展截图
下载HTTP - HTTPS Toggle扩展crx文件
下载HTTP - HTTPS Toggle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
}
} | |