Google Scholar Tools

This extension provides some additional bookmarking and sorting of google scholar results.

Google Scholar Tools là gì?

Google Scholar Tools là một tiện ích mở rộng Chrome được phát triển bởi Brian B. Griffiths, và tính năng chính của nó là "This extension provides some additional bookmarking and sorting of google scholar results.".

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

screenshot
screenshot
screenshot

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

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

                        Adds some quality-of-life functions to google scholar tools search results, such as the ability to save a paper as "read" and then hide it from view. If there are no visible items, the page will auto-increment to the next page with unread items. Users can also trash useless results that will not show up as read/unread.                    

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

Tên Google Scholar Tools Google Scholar Tools
ID iifbfdeeneklajclonmnjbmakdniikep
URL Chính Thức https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep
Mô tả This extension provides some additional bookmarking and sorting of google scholar results.
Kích Thước Tệp 9.52 KB
Số Lần Cài Đặt 1,902
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-12-30
Ngày Phát Hành 2020-12-30
Nhà Phát Triển Brian B. Griffiths
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": "Google Scholar Tools",
    "description": "This extension provides some additional bookmarking and sorting of google scholar results.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/scholar.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/scholar.google.com\/*"
            ],
            "js": [
                "pageTools.js"
            ],
            "css": [
                "pageTools.css"
            ]
        }
    ]
}