WikipeDPLA

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

什么是WikipeDPLA?

WikipeDPLA是由https://phette.net开发的Chrome扩展程序,该扩展的主要功能是“See relevant content from the Digital Public Library of America in Wikipedia”。

扩展截图

screenshot
screenshot

下载WikipeDPLA扩展crx文件

下载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\/*"
            ]
        }
    ]
}