Blow Up

Blow Up

This extension enlarges a selected text by clicking the UP icon or pressing <alt> + <space>

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Blow Up",
  "description": "This extension enlarges a selected text by clicking the UP icon or pressing <alt> + <space>",
  "version": "0.1.1",
  "manifest_version": 2,
  "icons": {
    "128": "BlowUp-Icon-128.png"
  },
  "browser_action": {
    "default_icon": "BlowUp-Icon.png",
    "default_title": "Click here to enlarge a selected text or press <alt> + <space>"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "blowup.css"
      ],
      "js": [
        "runblowup.js"
      ]
    }
  ]
}