WikipeDPLA
See relevant content from the Digital Public Library of America in Wikipedia
WikipeDPLA क्या है?
WikipeDPLA https://phette.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See relevant content from the Digital Public Library of America in Wikipedia"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WikipeDPLA एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |