Wikipedia-Interlink

In Wikipedia, insert a link to the other language version of the page, under the title.

Τι είναι το Wikipedia-Interlink;

Το Wikipedia-Interlink είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ksaga, και η κύρια λειτουργία του είναι "In Wikipedia, insert a link to the other language version of the page, under the title.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Wikipedia-Interlink

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

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

                        In Wikipedia, this extension makes links nearby the title to the same Wikipedia page in other languages. You can configure the languages.

This is very useful for the user who uses Wikipedia in multi-languages.

Version 1.1:
* Multiple language support fixes.
* The way settings are saved has been changed due to a requirement from the Chrome Web Store.
* The font replacement feature is no longer available.                    

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

Όνομα Wikipedia-Interlink Wikipedia-Interlink
ID eieglkpnekdkplneinloajdeknicmjkm
Επίσημο URL https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm
Περιγραφή In Wikipedia, insert a link to the other language version of the page, under the title.
Μέγεθος Αρχείου 9.18 KB
Αριθμός Εγκαταστάσεων 90
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2023-09-20
Ημερομηνία Δημοσίευσης 2015-06-19
Αξιολόγηση 4.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής ksaga
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/wiki\/*",
                "http:\/\/*.wikipedia.org\/wiki\/*",
                "https:\/\/*.wiktionary.org\/wiki\/*",
                "http:\/\/*.wiktionary.org\/wiki\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html"
}