Github Code Font Changer

Github Code Font Changer

Change and customize the boring GitHub code viewer font

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Github Code Font Changer",
  "description": "Change and customize the boring GitHub code viewer font",
  "version": "3.0",
  "icons": {
    "16": "images/logo/V2/icon16.png",
    "48": "images/logo/V2/icon48.png",
    "128": "images/logo/V2/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.github.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "https://*.github.com/*"
  ]
}