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.”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 HTTP - HTTPS Toggle HTTP - HTTPS Toggle
ID dlfpljbhokbnchngpchnfkeopkgfofej
官方網址 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"
    }
}