1-click

1-click access to institutional login page for full article

1-clickとは何ですか?

1-clickはIan Tanによって開発されたChromeの拡張機能で、その主な機能は「1-click access to institutional login page for full article」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

1-click拡張機能のCRXファイルをダウンロード

1-click拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Does your work require you to look up academic journals online? If so, the sense of frustration at the cumbersome process of logging in to access a pay-walled resource may be all too familiar. 

1-Click lives in your browser toolbar and provides easy access to full versions of articles. Note that you need to have already have institutional access to the journals in question - 1-Click does not provide unauthorised access to pay-walled content. 

Instructions:
1. [Required only upon installation] Click on toolbar icon and select your institution from the dropdown list. Click 'save'. 

2. Search for articles as you normally would. When presented with incomplete article and asked to log in for access, look out for the '1-Click' button.

3. When presented with your institutional login page, fill in your credentials and proceed. And presto! You will be taken to the full article.


It works by prefixing the article URL with your institutional proxy URL, and if your institution has a valid subscription to the content, this takes you to the full version upon logging in.

Minimal setup is required, and you can change your institution proxy at any time by clicking on the toolbar icon. The extension remembers your most recently saved proxy and runs in the background every time you fire up your browser!

1-Click is perfect for you if you want a no-frills, stress-free experience while carrying our your research off-campus. Sometimes, cloud storage and markup tools aren't necessary - maybe like me, you already use other such services and don't want to disrupt your existing workflow - and all you need is quick access to the web page containing the full article.

Current supported journals and databases are: PubMed, ScienceDirect, Ovid, Nature, Springer, UpToDate, BMJ Journals, Wiley, Taylor & Francis Online, SAGE Journals, IEEE Xplore, Oxford University Press, Cambridge University Press, MIT Press, de Gruyter, ACS Publications.  

For a list of supported institutional proxies, please visit EZProxy DB (link below).

Disclaimer: This extension does not store any passwords or collect user information. 

If you have any suggestions or complaints, please email me at [email protected]. Any feedback is greatly appreciated!

Acknowledgements:

Proxy list taken from https://ezproxy-db.appspot.com/ by Tom Wambold.

 
Tap icon by Pixel perfect (https://www.flaticon.com/authors/pixel-perfect)
Document and wall icon by Freepik (https://www.flaticon.com/authors/freepik)

Changelog:

25/8/18: Fixed Nature button                    

拡張機能の基本情報

名前 1-click 1-click
ID iaccghjomfhbhdeoeajgnijcgepocnjl
公式URL https://chromewebstore.google.com/detail/1-click/iaccghjomfhbhdeoeajgnijcgepocnjl
説明 1-click access to institutional login page for full article
ファイルサイズ 23.81 KB
インストール数 187
現在のバージョン 2.0
最終更新日 2018-08-25
公開日 2018-08-25
評価 5.00/5 合計 1 レビュー
開発者 Ian Tan
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "1-click",
    "version": "2.0",
    "description": "1-click access to institutional login page for full article",
    "icons": {
        "16": ".\/assets\/tap_16.png",
        "64": ".\/assets\/tap_64.png",
        "128": ".\/assets\/tap_128.png"
    },
    "author": "Ian Tan",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab",
        "tabs",
        ""
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.sciencedirect.com\/user\/login*",
                "https:\/\/www.sciencedirect.com\/science*",
                "https:\/\/shib-idp.ucl.ac.uk\/*",
                "https:\/\/onlinelibrary.wiley.com\/doi\/*",
                "https:\/\/www.nature.com\/articles\/*",
                "https:\/\/link.springer.com\/article\/*",
                "https:\/\/www.uptodate.com\/*",
                "*:\/\/*.bmj.com\/*",
                "https:\/\/www.tandfonline.com\/*",
                "*:\/\/journals.sagepub.com\/*",
                "https:\/\/ieeexplore.ieee.org\/*",
                "https:\/\/academic.oup.com\/*",
                "https:\/\/insights.ovid.com\/*",
                "https:\/\/www.ncbi.nlm.nih.gov\/pubmed\/*",
                "*:\/\/dx.doi.org\/*",
                "https:\/\/jamanetwork.com\/*",
                "https:\/\/www.mitpressjournals.org\/*",
                "https:\/\/www.cambridge.org\/*",
                "https:\/\/www.degruyter.com\/*",
                "https:\/\/pubs.acs.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}