Scholar with Code

An extension to show code implementations from Papers with Code directly in Google Scholar.

Scholar with Code là gì?

Scholar with Code là một tiện ích mở rộng Chrome được phát triển bởi Elad Richardson, và tính năng chính của nó là "An extension to show code implementations from Papers with Code directly in Google Scholar.".

Ả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 Scholar with Code

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

                        A simple extension to present the number of available code implementions (via Papers With Code) for articles listed on Google Scholar and arXiv. Mostly relevant for researchers looking to optimize their working flow with Google Scholar and Papers With Code.                    

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

Tên Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
URL Chính Thức https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
Mô tả An extension to show code implementations from Papers with Code directly in Google Scholar.
Kích Thước Tệp 28.72 KB
Số Lần Cài Đặt 6,000
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2021-12-31
Ngày Phát Hành 2020-06-24
Đánh Giá 4.50/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Elad Richardson
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scholar with Code",
    "version": "1.0.4",
    "icons": {
        "493": "docs\/logo.png"
    },
    "description": "An extension to show code implementations from Papers with Code directly in Google Scholar.",
    "permissions": [
        "https:\/\/paperswithcode.com\/*",
        "https:\/\/scholar.google.com\/*",
        "https:\/\/scholar.google.co.il\/*",
        "https:\/\/arxiv.org\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "src\/content_scholar.js"
            ],
            "matches": [
                "https:\/\/scholar.google.com\/*",
                "https:\/\/scholar.google.co.il\/*"
            ]
        },
        {
            "js": [
                "src\/content_arxiv.js"
            ],
            "matches": [
                "https:\/\/arxiv.org\/abs\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    }
}