art

art

learn some art every day

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "art",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "learn some art every day",
  "homepage_url": "http://bearwin.net",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "persistent": false
    }
  ],
  "chrome_url_overrides": {
    "newtab": "src/override/override.html"
  },
  "override": {
    "scripts": [
      "jquery.min.js",
      "jquery.foggy.min.js",
      "or.js",
      "data.js"
    ],
    "persistent": false
  }
}