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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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