Darken text

Darken text

This extension darkens text in <p> tags to make blog text more readable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Darken text",
  "short_name": "DT",
  "description": "This extension darkens text in <p> tags to make blog text more readable.",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://*/*"
  ],
  "commands": {
    "darken_text": {
      "suggested_key": {
        "windows": "Ctrl+Shift+K",
        "mac": "Command+Shift+K",
        "chromeos": "Ctrl+Shift+K",
        "linux": "Ctrl+Shift+K"
      },
      "description": "Darken text to enhance readability."
    }
  }
}