Where's That Paper?

Automatically adds viewed academic papers to your favorites.

Where's That Paper? là gì?

Where's That Paper? là một tiện ích mở rộng Chrome được phát triển bởi Eylon Yogev, và tính năng chính của nó là "Automatically adds viewed academic papers to your favorites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Where's That Paper?

Tải xuống các tệp mở rộng Where's That Paper? dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        If you’re like me, you find yourself frequently searching the web for papers that you have browsed / opened in the past on your computer - basically paper browsing history. Whether it is in the process of writing a paper or searching for existing ideas, you may search for authors of titles of papers that you recall know to have once glimpsed at. At some point, the paper has either been downloaded or added  to the favorites bar. In any case, this process is manual and takes up much time (often including frustration). As such, I thought we could all use some code to automate it.

Before I tell you more about what it does, let me touch upon the largest obstacle of any new tool, the learning curve. Rest assured that “"Where's that paper?" required  zero training – just install it and continue working as usual – it will guide you without further effort on your end.

The extension is very simple: it identifies when you are reading a scientific paper (according to the domain) and then automatically adds this paper, with the proper author list, year etc., to your favorites bar under a designated folder. Then, when you type a search in the Chrome's search bar for an author or a title, the relevant results from the favorites pop up. One might also explicitly browse in the favorites to see all papers read. 

The extension automatically works on a list of specified domains that include:
eprint.iacr.org, arxiv.org, eccc.weizmann.ac.il, epubs.siam.org, research.microsoft.com, citeseerx.ist.psu.edu, ac.elscdn.com, www.sciencedirect.com, download.springer.com, link.springer.com, delivery.acm.org, proceedings.mlr.press and journals.aps.org.

It is not too difficult to customize the list and additional domains. Reach out to me and I'll add them upon your request!
 
A bonus feature: Click the extension’s icon and you can download a bib file containing (a nice formatting of) the DBLP bibtex records of all papers added to the favorites.

Security:
Most who work in our domain of expertise would be quite concerned with installing extensions and with good reason. The extension I wrote does not leak any information, not to me or to another third party. I have no ulterior motive in developing the extension, originally helping myself, I now see the benefit of sharing it with our community. I do not know how to reassure you that this is indeed the case other than giving you my word and publishing the source code online.

I'd be glad to hear any feedback.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Where's That Paper? Where's That Paper?
ID dkjnkdmoghkbkfkafefhbcnmofdbfdio
URL Chính Thức https://chromewebstore.google.com/detail/wheres-that-paper/dkjnkdmoghkbkfkafefhbcnmofdbfdio
Mô tả Automatically adds viewed academic papers to your favorites.
Kích Thước Tệp 175 KB
Số Lần Cài Đặt 314
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2018-11-13
Ngày Phát Hành 2018-11-12
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Eylon Yogev
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/eylonyogev/Where-s-That-Paper-
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Where's That Paper?",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Automatically adds viewed academic papers to your favorites.",
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/jquery\/jquery.js",
            "src\/bg\/bibtexParser.js",
            "src\/bg\/scrapers.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/bg\/popup.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "bookmarks",
        "tabs"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}