ChanScan

ChanScan

ChanScan is a tool that will automatically highlight unique words that are specifically used on imageboards like 4chan and 8kun. Once a word is highlighted, you can click that word to be navigated to a wiki page defining the word with context.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ChanScan",
  "description": "Imageboards, explained.",
  "version": "1.5",
  "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"
  ]
}