Font Changer

Font Changer

Find elements on the page and change their font with just few clicks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Font Changer",
  "version": "0.3.3",
  "description": "Find elements on the page and change their font with just few clicks.",
  "icons": {
    "64": "font-changer/icons/64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "font-changer/content-script/font-changer.js"
      ],
      "css": [
        "font-changer/content-script/font-changer.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "font-changer/icons/64.png",
    "default_title": "Font Changer"
  },
  "background": {
    "scripts": [
      "font-changer/background/background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ]
}