Goodly Dot PDF

Goodly Dot PDF

Adds PDF legend icon beyond link to PDF file for quick visual differentiation of links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Saveur",
  "name": "Goodly Dot PDF",
  "version": "2.0.1",
  "description": "Adds PDF legend icon beyond strict link to PDF file.",
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "icons": {
    "48": "icon/icon-48.png",
    "96": "icon/icon-96.png"
  },
  "browser_action": {
    "default_title": "goodlydotpdf",
    "default_icon": {
      "48": "icon/icon-48.png",
      "96": "icon/icon-96.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/visual_effects.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "icon/*"
  ]
}