Outdated Doc Detector

Outdated Doc Detector

Help non-English developers to check whether the translation of the current page is behind the corresponding English version.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.4.0",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "128": "oudated-128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "__MSG_extName__",
    "default_icon": "oudated-128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://developer.mozilla.org/*",
        "*://developer.android.com/*",
        "*://developer.android.google.cn/*",
        "*://firebase.google.com/*",
        "*://firebase.google.cn/*",
        "*://developers.google.com/*",
        "*://developers.google.cn/*",
        "*://www.tensorflow.org/*",
        "*://tensorflow.google.cn/*",
        "*://source.android.com/*",
        "*://source.android.google.cn/*",
        "*://cloud.google.com/*"
      ],
      "js": [
        "analyzer.js",
        "contentScript.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Alt+Shift+E"
      }
    }
  }
}