NoSquint Plus

NoSquint Plus

Manage site-specific zoom levels and color settings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "NoSquint Plus",
  "version": "62.2resigned1",
  "default_locale": "en",
  "description": "Manage site-specific zoom levels and color settings",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "background/background.js",
      "background/TLDs.js",
      "background/utils.js",
      "background/optionsController.js",
      "background/siteController.js",
      "background/viewController.js",
      "background/pageWatcher.js",
      "background/settingsWatcher.js",
      "background/mouseWatcher.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "48": "images/icon48.png"
    },
    "default_title": "Site Settings",
    "default_popup": "pages/siteSettings.html"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "js": [
        "scripts/content_script_st.js"
      ],
      "matches": [
        "*://*.barisderin.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "<all_urls>",
    "management",
    "contextMenus",
    "cookies"
  ],
  "options_ui": {
    "page": "pages/globalSettings.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}