MonkaTOS Ratings

MonkaTOS Ratings

Provides a rating on how likely a video is to be react safe!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Provides a rating on how likely a video is to be react safe!",
  "version": "1.1.0",
  "name": "MonkaTOS Ratings",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxA/5gRDmxVEW1+CoNyFuwJ+jIFNS83/O5hhAINu6bo3QSNeAJ0M3vmjWaMEK3uSDnAuRfQmFY5q+HWIbkQJl2tJZC2ZHedIxRgGyje0bEn4i2uOArlvVXqe4Tres3y73Qqg98qZUWjfX87/O8pz1djvswOiJONhScwSdo5VcF/PcVH+OQuBGUJwEry0pHz535tC+eFko1FobhLPkSLmzZPUXA1LXaA3zbBo8XKqbkp4F0XbLly/3D8sWldzbT26dVS90yPTlT8BeT+oBRB/K38wCpknBG9v5Xt9NHx+JPrqIUHA275pq/MQVdl8VRh5c+N31RdfQ05pWjAz+HSg66wIDAQAB",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "identity"
  ],
  "web_accessible_resources": [
    "*.png"
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.twitch.tv/*"
      ],
      "all_frames": true,
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "icons": {
    "128": "/icon128.png"
  }
}