Scholar with Code

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

什麼是Scholar with Code?

Scholar with Code是由Elad Richardson開發的Chrome擴展程式,該擴展的主要功能是“An extension to show code implementations from Papers with Code directly in Google Scholar.”。

擴展截圖

screenshot

下載Scholar with Code擴展crx文件

下載Scholar with Code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
官方網址 https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
簡介 An extension to show code implementations from Papers with Code directly in Google Scholar.
檔案大小 28.72 KB
安裝次數 6,000
目前版本 1.0.4
更新時間 2021-12-31
上架時間 2020-06-24
評分 4.50/5 共 10 次評分
開發者 Elad Richardson
電子郵箱 [email protected]
付費類型 free
支援的語言 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
    }
}