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"
}
} | |