jsin

jsin

js injector - easy way how to mess with webpages and do a load of funny stuff >:)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "jsin",
  "version": "0.5.0",
  "author": "Jirka Justra",
  "description": "js injector - easy way how to mess with webpages and do a load of funny stuff >:)",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "256": "banana.svg"
  },
  "browser_action": {
    "default_icon": {
      "256": "banana.svg"
    },
    "default_title": "jsin - js injector",
    "browser_style": false
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "tabs",
    "webNavigation",
    "unlimitedStorage",
    "nativeMessaging",
    "downloads",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "./lib/tea.js",
      "./lib/downloader.js",
      "./lib/injector.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  }
}