DOI Helper
A little add-on appending SciHub buttons for some webpages with s c i e n c e.
What is DOI Helper?
DOI Helper is a Chrome extension developed by Unknown, and its main feature is "A little add-on appending SciHub buttons for some webpages with s c i e n c e.".
Extension Screenshots
Download DOI Helper Extension CRX File
Download DOI Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension adds quick links redirecting to Sci-Hub page related to given paper. Currently supports only a few journals
Extension Basic Information
Name | DOI Helper |
ID | mfdbhfpaedhhgglcahhmhgannefehicb |
Official URL | https://chromewebstore.google.com/detail/doi-helper/mfdbhfpaedhhgglcahhmhgannefehicb |
Description | A little add-on appending SciHub buttons for some webpages with s c i e n c e. |
File Size | 86.73 KB |
Installation Count | 6,424 |
Current Version | 1.0.2.1 |
Last Updated | 2020-04-07 |
Publish Date | 2020-04-07 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DOI Helper", "version": "1.0.2.1", "description": "A little add-on appending SciHub buttons for some webpages with s c i e n c e.", "icons": { "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/inspirehep.net\/*" ], "js": [ "inspire-hep.js" ] }, { "matches": [ "*:\/\/*.sciencedirect.com\/*" ], "js": [ "science-direct.js" ] }, { "matches": [ "*:\/\/science.sciencemag.org\/*" ], "js": [ "science.js" ] }, { "matches": [ "*:\/\/journals.aps.org\/*\/abstract\/*" ], "js": [ "aps.js" ] } ] } |