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

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
        }
    ]
}