Sans Forgetica for Firefox

Sans Forgetica for Firefox

Adds a button on the toolbar which allows you to toggle the Sans Forgetica font from RMIT university on websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Sans Forgetica for Firefox",
  "version": "1.0.1",
  "description": "Sets the Sans Forgetica font from RMIT university as font on websites.",
  "homepage_url": "https://sansforgetica.rmit/",
  "icons": {
    "48": "icons/sansforgetica.svg",
    "96": "icons/sansforgetica.svg"
  },
  "browser_action": {
    "default_icon": "icons/sansforgetica-white.svg",
    "default_title": "Apply Sans Forgetica"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "fonts/SansForgetica.otf"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "addFont.js"
      ]
    }
  ]
}