Paper Memory

Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.

Paper Memory là gì?

Paper Memory là một tiện ích mở rộng Chrome được phát triển bởi vict0rsch, và tính năng chính của nó là "Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Paper Memory

Tải xuống các tệp mở rộng Paper Memory 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

                        An automated, web-based and minimalist reference manager that also finds code repositories.

It is not meant to replace, rather complete more standard reference managers as Zotero etc.

This browser extension allows you to do automatically store research papers you read, find a code repository and much more:

🏬 Automatically record papers you open, without clicking anywhere. You can then search them, tag them, comment them and link a code repository.

💻 Automatically find code repositories using PapersWithCode's API

🤝 Match pre-prints to publications using 4 different databases

🎬 Change a pdf's webpage title to the article's title, because who cares about that saved bookmark 1812.10889.pdf when it could be InstaGAN Instance-aware Image-to-Image Translation.pdf

🎫 BibTex citation, because citing papers should not be a hassle you can copy a BibTex citation to your clipboard or export the Memory itself as a .bib file

🔗 Markdown link, [title](url) because it's the little things that make sharing a paper easier (to be used in issues, PRs, Readme, HackMD.io etc.)

🗂 Direct download button with a nice name including the paper's title, so that you don't have to open the pdf's webpage and then download it from your browser.

📄 Go back from a pdf to its abstract page. For instance: from https://arxiv.org/pdf/1703.06907.pdf to https://arxiv.org/abs/1703.06907 in a click.

🏛️ Export your data as a .json file or a .bib full BibTex export

Check out more the code, documentation, screenshots and share ideas at https://github.com/vict0rsch/PaperMemory                    

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

Tên Paper Memory Paper Memory
ID hmebhknlgddhfbbdhgplnillngljgmdi
URL Chính Thức https://chromewebstore.google.com/detail/paper-memory/hmebhknlgddhfbbdhgplnillngljgmdi
Mô tả Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.
Kích Thước Tệp 547 KB
Số Lần Cài Đặt 1,446
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2023-12-04
Ngày Phát Hành 2020-03-24
Đánh Giá 5.00/5 Tổng số 15 Đánh Giá
Nhà Phát Triển vict0rsch
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/vict0rsch/PaperMemory
URL Trang Trợ Giúp https://github.com/vict0rsch/PaperMemory/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paper Memory",
    "version": "0.7.0",
    "manifest_version": 2,
    "description": "Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.",
    "homepage_url": "https:\/\/papermemory.org",
    "icons": {
        "192": "icons\/favicon-192x192.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "src\/shared\/min\/utils.min.js",
            "src\/background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/favicon-192x192.png",
        "default_title": "PaperMemory",
        "default_popup": "src\/popup\/min\/popup.min.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+M"
            },
            "description": "Open PaperMemory's Popup"
        },
        "manualParsing": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Manually trigger the parsing of a paper; only available if you have disabled auto-parsing in the menu"
        },
        "downloadPdf": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Download the pdf file for the current paper into your PaperMemoryStore"
        }
    },
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "downloads",
        "downloads.open"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "src\/shared\/min\/jquery.min.js",
                "src\/shared\/js\/utils\/logTrace.js",
                "src\/shared\/js\/utils\/miniquery.js",
                "src\/shared\/js\/utils\/config.js",
                "src\/shared\/js\/utils\/functions.js",
                "src\/shared\/js\/utils\/gist.js",
                "src\/shared\/js\/utils\/sync.js",
                "src\/shared\/js\/utils\/data.js",
                "src\/shared\/js\/utils\/paper.js",
                "src\/shared\/js\/utils\/state.js",
                "src\/shared\/js\/utils\/bibtexParser.js",
                "src\/shared\/js\/utils\/parsers.js",
                "src\/content_scripts\/content_script.js"
            ],
            "css": [
                "src\/shared\/css\/loader.css",
                "src\/content_scripts\/content_script.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/data\/*.json"
    ]
}