Justify

Justify

Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Justify",
  "version": "0.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.2.3.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon_justified.png",
    "default_title": "Justify!"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "commands": {
    "justify": {
      "suggested_key": {
        "default": "Ctrl+Shift+J",
        "mac": "Command+Shift+J"
      },
      "description": "Justify All Text"
    }
  }
}