12h to 24h

12h to 24h

Convert 12h times to 24h times

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "12h to 24h",
  "description": "Convert 12h times to 24h times",
  "icons": {
    "128": "icon_128.png",
    "256": "icon.png"
  },
  "version": "0.2.1",
  "author": "Kobra",
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "libs.js",
        "findAndReplaceDOMText.js",
        "contentscript-end.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}