HTTP - HTTPS Toggle

HTTP - HTTPS Toggle

This extension toggles the current tab's URL between http and https.

Merlin
Additional files are visible only to premium users

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