Format

Format

Format detects any available markdown tags that a website allows in its form data and places them just one click away!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Format",
  "description": "Format detects any available markdown tags that a website allows in its form data and places them just one click away!",
  "version": "1.0.0",
  "permissions": [
    "<all_urls>",
    "tabs",
    "contextMenus"
  ],
  "background": {
    "page": "event_pages/background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/broadcast.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/replace.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "resources/img/icons/pencil16.png",
    "20": "resources/img/icons/pencil20.png",
    "24": "resources/img/icons/pencil24.png",
    "32": "resources/img/icons/pencil32.png",
    "48": "resources/img/icons/pencil48.png",
    "64": "resources/img/icons/pencil64.png",
    "128": "resources/img/icons/pencil128.png",
    "256": "resources/img/icons/pencil256.png",
    "512": "resources/img/icons/pencil512.png"
  }
}