Shinden Look Changer

Shinden Look Changer

Changes stylistically Shinden.pl website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shinden Look Changer",
  "short_name": "ShindenLook",
  "author": "Wojciech K",
  "version": "1.1.1",
  "description": "Changes stylistically Shinden.pl website.",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128_chrome.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://shinden.pl/*"
      ],
      "exclude_matches": [
        "*://shinden.pl/animelist/*"
      ],
      "run_at": "document_start",
      "css": [
        "resources/static.css"
      ]
    },
    {
      "matches": [
        "*://shinden.pl/*"
      ],
      "exclude_matches": [
        "*://shinden.pl/animelist/*"
      ],
      "js": [
        "contentScripts/documentStart.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://shinden.pl/*"
      ],
      "exclude_matches": [
        "*://shinden.pl/animelist/*"
      ],
      "js": [
        "contentScripts/documentEnd.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://shinden.pl/*"
      ],
      "exclude_matches": [
        "*://shinden.pl/animelist/*"
      ],
      "js": [
        "contentScripts/documentIdle.js"
      ],
      "run_at": "document_idle"
    }
  ]
}