Tab Freezer

Tab Freezer

Activate Tab Freezer to automatically close popups and advertising tabs which get past ad-blockers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Freezer",
  "version": "1.3.1",
  "description": "Activate Tab Freezer to automatically close popups and advertising tabs which get past ad-blockers",
  "author": "lynk",
  "icons": {
    "32": "icons/tabfreezer_icon_blue_32.png",
    "64": "icons/tabfreezer_icon_blue_64.png"
  },
  "commands": {
    "freezer-override": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "linux": "Ctrl+Space",
        "mac": "MacCtrl+Space"
      },
      "description": "Override the tab freeze one time"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_area": "navbar",
    "default_icon": {
      "32": "icons/tabfreezer_icon_off.png"
    },
    "default_title": "TURN ON Freezing"
  },
  "options_ui": {
    "page": "options/tabfreezer_options.html",
    "open_in_tab": false
  },
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "tabfreezer_bg.js"
    ]
  }
}