Anstatauxi

Anstatauxi

Eta etendilo por Chrome kiu anstataŭigas tion kion vi tajpas laŭ x-sistemo. (sx -> ŝ, cx -> ĉ, ktp.) Tiny chrome extension that…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anstatauxi",
  "version": "1.0.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Anstatauxi"
  },
  "content_scripts": [
    {
      "js": [
        "anstatauxi.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ]
}