Outdated Doc Detector

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

Τι είναι το Outdated Doc Detector;

Το Outdated Doc Detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jackie(Guokai) Han, και η κύρια λειτουργία του είναι "Help non-English developers to check whether the translation of the current page is behind the corresponding English version.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Outdated Doc Detector

Λήψη αρχείων επέκτασης Outdated Doc Detector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        There are several developer websites that support multiple languages which are translated from English. Non-English developers prefer to use their native language as the default display language. But these non-English documents on the website maybe out of date compared with it's corresponding English versions. 

*Outdated documents often lead to potential problems and are inconspicuous for developers.* This extension is used to indicate whether the document is out of date by comparing the updated time between non-English version and English version of the same page.

It will show a warning bar on the top of the website and show different icons on the address bar if the content is non-English and outdated. Currently the supported developer websites include MDN Web Docs, Android Developers,  Google Developers, Firebase Developers, Google Cloud Developers and TensorFlow Developers. 

More info and Feedback see: https://github.com/hanguokai/Outdated-Doc-Detector

Release Notes
[1.2.0] - 2018-02-05
- New feature: Support MDN site for web developers.

[1.1.0] - 2017-09-08
- New feature: Add warning banner in web pages and it's setting in the extension options page.

[1.0.2] - 2017-09-02
- New feature: Add keyboard shortcut for popup page, default is "Alt+Shift+E".                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Outdated Doc Detector Outdated Doc Detector
ID enmpooegjbnbhifdpapjknlbjefnlnja
Επίσημο URL https://chromewebstore.google.com/detail/outdated-doc-detector/enmpooegjbnbhifdpapjknlbjefnlnja
Περιγραφή Help non-English developers to check whether the translation of the current page is behind the corresponding English version.
Μέγεθος Αρχείου 182 KB
Αριθμός Εγκαταστάσεων 111
Τρέχουσα Έκδοση 1.4.0
Τελευταία Ενημέρωση 2020-01-06
Ημερομηνία Δημοσίευσης 2020-01-06
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Jackie(Guokai) Han
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/hanguokai/Outdated-Doc-Detector
URL της Σελίδας Πολιτικής Απορρήτου https://guokai.dev/privacy
Υποστηριζόμενες Γλώσσες en,zh-CN
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"
            }
        }
    }
}