Science Nest | Research Code!

Get code for research/scientific papers on Google, Microsoft, Semantic Scholar and ArXiv.

Science Nest | Research Code! là gì?

Science Nest | Research Code! là một tiện ích mở rộng Chrome được phát triển bởi https://www.sciencenest.com, và tính năng chính của nó là "Get code for research/scientific papers on Google, Microsoft, Semantic Scholar and ArXiv.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Science Nest | Research Code!

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

                        Science Nest database has code from all disciplines (e.g., Computer Science, Engineering, Economics, ...). This is a Beta version and we will be adding code to our repository on a regular basis.

The extension checks the "search results" of the following academic search engines:
- Google Scholar
- Semantic Scholar
- Microsoft Academic
- ArXiv

For each search result, if the code is available at Science Nest, a link to the paper code is provided. Just click the green "Get Code". 

Otherwise, you are provided with links to either request the code or submit the code if you are the owner of the paper. Just click the orange "Request Code" or the red "Submit Code".

The extension will also  provide you with links to all related papers with code available on Science Nest. Just click our logo in the extension tool bar on the top to see some samples of related papers with code. You can click any of the papers to get its code or you can click "More..." to be redirected to Science Nest with more search results related to your search query. (Note: our extension needs to be "pinned" to see Science Nest logo in the extension bar.)

Please do not hesitate to contact us for any questions or concerns at:
https://www.sciencenest.com/contact/                    

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

Tên Science Nest | Research Code! Science Nest | Research Code!
ID flcmcfiiookmhjkfinedoolcbbfioiog
URL Chính Thức https://chrome.google.com/webstore/detail/science-nest-research-cod/flcmcfiiookmhjkfinedoolcbbfioiog
Mô tả Get code for research/scientific papers on Google, Microsoft, Semantic Scholar and ArXiv.
Kích Thước Tệp 690 KB
Số Lần Cài Đặt 1,100
Phiên Bản Hiện Tại 0.1.0.00
Cập Nhật Lần Cuối 2021-03-02
Ngày Phát Hành 2021-01-12
Đánh Giá 5.00/5 Tổng số 16 Đánh Giá
Nhà Phát Triển https://www.sciencenest.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.sciencenest.com/
URL Trang Trợ Giúp https://www.sciencenest.com/contact/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Science Nest | Research Code!",
    "version": "0.1.0.00",
    "homepage_url": "http:\/\/www.sciencenest.com",
    "description": "Get code for research\/scientific papers on Google, Microsoft, Semantic Scholar and ArXiv.",
    "icons": {
        "192": "icons\/icon100.png",
        "101": "icons\/icon100a.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon100a.png",
        "default_popup": "",
        "default_title": "Science Nest"
    },
    "background": {
        "scripts": [
            "js\/sn1.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/*.png",
        "resources\/*.*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scholar.google.com\/scholar?*",
                "https:\/\/scholar.google.com.hk\/scholar?*",
                "https:\/\/scholar.google.com.eg\/scholar?*",
                "https:\/\/scholar.google.com.au\/scholar?*",
                "https:\/\/scholar.google.fi\/scholar?*",
                "https:\/\/scholar.google.jp\/scholar?*",
                "https:\/\/scholar.google.fr\/scholar?*",
                "https:\/\/scholar.google.es\/scholar?*",
                "https:\/\/scholar.google.pt\/scholar?*",
                "https:\/\/scholar.google.de\/scholar?*",
                "https:\/\/scholar.google.nl\/scholar?*",
                "https:\/\/scholar.google.se\/scholar?*",
                "https:\/\/scholar.google.ca\/scholar?*",
                "https:\/\/scholar.google.com\/citations?*",
                "https:\/\/scholar.google.com.hk\/citations?*",
                "https:\/\/scholar.google.com.eg\/citations?*",
                "https:\/\/scholar.google.com.au\/citations?*",
                "https:\/\/scholar.google.fi\/citations?*",
                "https:\/\/scholar.google.jp\/citations?*",
                "https:\/\/scholar.google.fr\/citations?*",
                "https:\/\/scholar.google.es\/citations?*",
                "https:\/\/scholar.google.pt\/citations?*",
                "https:\/\/scholar.google.de\/citations?*",
                "https:\/\/scholar.google.nl\/citations?*",
                "https:\/\/scholar.google.se\/citations?*",
                "https:\/\/scholar.google.ca\/citations?*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/sn2.js"
            ],
            "css": [
                "css\/extern\/jquery-ui.css",
                "css\/extern\/font-awesome.min.css",
                "css\/content.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/arxiv.org\/search\/?*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/sn3.js"
            ],
            "css": [
                "css\/extern\/jquery-ui.css",
                "css\/extern\/font-awesome.min.css",
                "css\/content.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.semanticscholar.org\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/sn4.js"
            ],
            "css": [
                "css\/extern\/jquery-ui.css",
                "css\/extern\/font-awesome.min.css",
                "css\/content.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/academic.microsoft.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/sn5.js"
            ],
            "css": [
                "css\/extern\/jquery-ui.css",
                "css\/extern\/font-awesome.min.css",
                "css\/content.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/scholar.google.com\/*",
                "https:\/\/scholar.google.ca\/*",
                "https:\/\/scholar.google.com.hk\/*",
                "https:\/\/scholar.google.com.eg\/*",
                "https:\/\/scholar.google.com.au\/*",
                "https:\/\/scholar.google.fi\/*",
                "https:\/\/scholar.google.jp\/*",
                "https:\/\/scholar.google.fr\/*",
                "https:\/\/scholar.google.es\/*",
                "https:\/\/scholar.google.pt\/*",
                "https:\/\/scholar.google.de\/*",
                "https:\/\/scholar.google.nl\/*",
                "https:\/\/scholar.google.se\/*",
                "https:\/\/arxiv.org\/search\/?*",
                "https:\/\/academic.microsoft.com\/*",
                "https:\/\/www.semanticscholar.org\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/sn6.js"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "https:\/\/scholar.google.com\/scholar?*",
        "https:\/\/scholar.google.ca\/scholar?*",
        "https:\/\/scholar.google.com.hk\/scholar?*",
        "https:\/\/scholar.google.com.eg\/scholar?*",
        "https:\/\/scholar.google.com.au\/scholar?*",
        "https:\/\/scholar.google.fi\/scholar?*",
        "https:\/\/scholar.google.jp\/scholar?*",
        "https:\/\/scholar.google.nl\/scholar?*",
        "https:\/\/scholar.google.fr\/scholar?*",
        "https:\/\/scholar.google.es\/scholar?*",
        "https:\/\/scholar.google.pt\/scholar?*",
        "https:\/\/scholar.google.de\/scholar?*",
        "https:\/\/scholar.google.se\/scholar?*",
        "https:\/\/scholar.google.com\/citations?*",
        "https:\/\/scholar.google.ca\/citations?*",
        "https:\/\/scholar.google.com.hk\/citations?*",
        "https:\/\/scholar.google.com.eg\/citations?*",
        "https:\/\/scholar.google.com.au\/citations?*",
        "https:\/\/scholar.google.fi\/citations?*",
        "https:\/\/scholar.google.jp\/citations?*",
        "https:\/\/scholar.google.nl\/citations?*",
        "https:\/\/scholar.google.fr\/citations?*",
        "https:\/\/scholar.google.es\/citations?*",
        "https:\/\/scholar.google.pt\/citations?*",
        "https:\/\/scholar.google.de\/citations?*",
        "https:\/\/scholar.google.se\/citations?*",
        "https:\/\/arxiv.org\/search\/?*",
        "https:\/\/academic.microsoft.com\/*",
        "https:\/\/www.semanticscholar.org\/*",
        "https:\/\/www.sciencenest.com\/*",
        "https:\/\/www.sciencenest.com\/wp-json\/ma\/v1\/*"
    ]
}