WikipeDPLA

See relevant content from the Digital Public Library of America in Wikipedia

Τι είναι το WikipeDPLA;

Το WikipeDPLA είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://phette.net, και η κύρια λειτουργία του είναι "See relevant content from the Digital Public Library of America in Wikipedia".

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

screenshot
screenshot

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

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

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

                        This extension queries the DPLA each time you visit a Wikipedia article, using the article's title, redirects, and categories to find relevant items. If you click a link at the top of the article, it loads a series of links to the items.

The original code behind WikiDPLA was written at LibHack, a hackathon at the American Library Association's 2014 Midwinter Meeting in Philadelphia, PA.

Does not transmit user data anywhere nor use analytics.

☆☆☆ OPEN SOURCE ☆☆☆

The code is on GitHub: https://github.com/phette23/wdpla-ext                    

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

Όνομα WikipeDPLA WikipeDPLA
ID jeblaajgenlcpcfhmgdhdeehjfbfhmml
Επίσημο URL https://chromewebstore.google.com/detail/wikipedpla/jeblaajgenlcpcfhmgdhdeehjfbfhmml
Περιγραφή See relevant content from the Digital Public Library of America in Wikipedia
Μέγεθος Αρχείου 126 KB
Αριθμός Εγκαταστάσεων 103
Τρέχουσα Έκδοση 1.3.1
Τελευταία Ενημέρωση 2022-07-01
Ημερομηνία Δημοσίευσης 2015-07-19
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://phette.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://en.wikipedia.org/wiki/Wikipedia:TWL/FindDPLA
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/phette23/wdpla-ext/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.3.1",
    "manifest_version": 3,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/dpla-logo-16.png",
        "19": "images\/dpla-logo-19.png",
        "32": "images\/dpla-logo-32.png",
        "48": "images\/dpla-logo-48.png",
        "64": "images\/dpla-logo-64.png",
        "128": "images\/dpla-logo-128.png"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "options_page": "options.html",
    "host_permissions": [
        "https:\/\/api.dp.la\/"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/wiki\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "scripts\/vendor\/jquery-3.6.0.min.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/vendor\/jquery-3.6.0.min.js",
                "scripts\/contentscript.js",
                "styles\/main.css"
            ],
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ]
        }
    ]
}