Website scripting

Website scripting

Developers can add javascript codes in webpage. Like customizing other websites with our own codes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appTitle__",
  "short_name": "__MSG_appShortTitle__",
  "description": "__MSG_appDesc__",
  "version": "2.7.4",
  "offline_enabled": true,
  "default_locale": "en",
  "icons": {
    "16": "image/16_icon.png",
    "48": "image/48_icon.png",
    "128": "image/128_icon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "options_ui": {
    "page": "options_page.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_title": "__MSG_appTitle__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/CommonFunctionalities.js",
      "js/ChromeFunctionalities.js",
      "background.js"
    ]
  },
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}