pseudoJS

pseudoJS

Run simple scripts on selected web pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "pseudoJS",
  "version": "1.4.0",
  "author": "addeective.com",
  "description": "Run simple scripts on selected web pages",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background/log.js",
      "common/storage.js",
      "background/chromeutils.js",
      "background/emitter.js",
      "background/messenger.js",
      "background/background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://tvsurftv.com/*",
        "https://github.com/*"
      ],
      "js": [
        "vendor/serialize.js",
        "vendor/jquery.js",
        "common/storage.js",
        "vendor/acorn.js",
        "vendor/interpreter.js",
        "content/ADDinterpreter.js",
        "content/index.js"
      ]
    }
  ]
}