Autocorrect Units

Autocorrect Units

Helps format SI (metric), US customary, and imperial units correctly when typing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Autocorrect Units",
  "version": "0.9.21",
  "description": "Helps format SI (metric), US customary, and imperial units correctly when typing.",
  "manifest_version": 2,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiOErgkKfbAv2qE9LMXPrGqT9D+w8A9Rv2RCQUUJ1AEssXkFWoZo8K6kYukfpFFdNhJZK/LQh8dqX6zZWhB9Biw/Cr42/M51viFvFNMMtGNTr5hYDCDI55vVHeJKmPdrTNa6K3sTwNq07vsOUbGbK+AwzsOurDYBnS7zkzMfCOztsyKa4gxh5OLtEB0WM8AxW2wi+0WHmd8OqimzYbV4Nf42t+JvBLxVObejY3gtWZD7fvlMLOaHhAjfOIXFJwP/EPgTH9YH+oVVjr3D9LnhWTwny9EjKdPoTihCLxhVUrEIHLf3aw9AS1YDqMNsOBF+iyXZ4GmgaDgbnD0wi4SGDrwIDAQAB",
  "offline_enabled": true,
  "icons": {
    "16": "images/logo-16-enabled.png",
    "32": "images/logo-32-enabled.png",
    "48": "images/logo-48-enabled.png",
    "128": "images/logo-128-enabled.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "js/inject.js"
  ],
  "browser_action": {
    "default_title": "Toggle unit autocorrection",
    "default_icon": {
      "16": "images/logo-16-enabled.png",
      "32": "images/logo-32-enabled.png",
      "48": "images/logo-48-enabled.png",
      "128": "images/logo-128-enabled.png"
    }
  }
}