Better Black Hole (42 Intra)

Better Black Hole (42 Intra)

Display the 42 Intra Black Hole in a less stressing way, making it a more wholesome experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Better Black Hole (42 Intra)",
  "version": "1.0.0.2",
  "description": "Display the 42 Intra Black Hole in a less stressing way, making it a more wholesome experience.",
  "author": "Jeffrey Koopman",
  "manifest_version": 2,
  "permissions": [
    "webRequest",
    "*://profile.intra.42.fr/*"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://profile.intra.42.fr/",
        "*://profile.intra.42.fr/users/*"
      ],
      "run_at": "document_start",
      "js": [
        "bbh.js"
      ],
      "css": [
        "bbh.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "bbh_bg.js"
    ],
    "persistent": true
  }
}