ChanScan

ChanScan

Imageboards, explained.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChanScan",
  "description": "Imageboards, explained.",
  "version": "1.4",
  "author": "Jake Creps",
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "dist/script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "permissions": [
    "*://*/*",
    "storage"
  ]
}