Instant Smart Quotes

Instant Smart Quotes

Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type.

Additional files are visible only to premium users

manifest.json


{
  "name": "Instant Smart Quotes",
  "version": "6.0.0",
  "description": "Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type.",
  "author": "Florian Zemke",
  "homepage_url": "https://github.com/Zemke/instant-smart-quotes",
  "manifest_version": 2,
  "offline_enabled": true,
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{6eee356b-4400-40d2-b4f9-b5e6ab5965e5}"
    }
  },
  "browser_action": {
    "default_title": "Instant Smart Quotes",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/bookmarklet.js"
      ],
      "all_frames": true
    }
  ]
}