oneclick-fontchanger

oneclick-fontchanger

Let you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "oneclick-fontchanger",
  "version": "0.2",
  "description": "Let you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts.",
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "author": "dreamingblackcat",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "fontSettings",
    "storage"
  ],
  "options_page": "options.html",
  "commands": {
    "first_font": {
      "suggested_key": {
        "windows": "Ctrl+B",
        "mac": "Command+B",
        "linux": "Ctrl+B"
      },
      "description": "Change Font Setting to First Font"
    },
    "second_font": {
      "suggested_key": {
        "windows": "Alt+B",
        "mac": "Alt+B",
        "linux": "Alt+B"
      },
      "description": "Change Font Setting to Second Font"
    }
  },
  "manifest_version": 2
}