Fontanello

Fontanello

A browser extension that lets you display the basic typographic styles of a text by right-clicking it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Fontanello",
  "version": "1.2.2",
  "description": "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "client.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "minimum_chrome_version": "45",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}