okdice

okdice

kdice tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "permissions": [
    "storage"
  ],
  "version": "0.0.28",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "web_accessible_resources": [
    "options.html"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://kdice.com/*",
        "https://kdice.com/*",
        "http://*.kdice.com/*",
        "https://*.kdice.com/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "bower_components/underscore/underscore.js",
        "bower_components/backbone/backbone.js",
        "bower_components/Autolinker.js/dist/Autolinker.js",
        "bower_components/bacon/dist/Bacon.js",
        "scripts/okdice.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}