Examine source code of AKUNIN

Inspect and view changes in AKUNIN source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "AKUNIN",
  "description": "A Browser Extension for detecting hate speech on X/Twitter powered with AI",
  "version": "1",
  "icons": {
    "16": "icons/akunin-icon.png",
    "48": "icons/akunin-icon.png",
    "96": "icons/akunin-icon.png",
    "128": "icons/akunin-icon.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "src/html/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "src/scripts/tf.es2017.js",
        "src/scripts/jquery-3.7.1.min.js",
        "src/scripts/alayDictionary.js",
        "src/scripts/stopWords.js",
        "src/scripts/indonesianWordIndex.js",
        "src/scripts/indonesianDictionary.js",
        "src/scripts/indonesianStemmer.js",
        "src/scripts/preprocessing.js",
        "src/scripts/akunin.js"
      ],
      "css": [
        "src/styles/akunin.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}