Charset

Charset

Modify the default encoding for the website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "0.5.4",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "i/16.png",
    "19": "i/19.png",
    "32": "i/32.png",
    "38": "i/38.png",
    "64": "i/64.png",
    "128": "i/128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "i/19.png",
      "38": "i/38.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "author": "Liming Jin, [email protected]",
  "background": {
    "scripts": [
      "j/encoding.js",
      "j/background.js",
      "j/menu.js"
    ],
    "persistent": true
  },
  "homepage_url": "https://github.com/jinliming2/Chrome-Charset",
  "incognito": "split",
  "minimum_chrome_version": "55.0.2872.0",
  "offline_enabled": true,
  "options_ui": {
    "chrome_style": false,
    "page": "option.html",
    "open_in_tab": false
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "tabs"
  ],
  "short_name": "__MSG_appShortName__",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}