Scholar Plus

Utilities for Google Scholar

Scholar Plus là gì?

Scholar Plus là một tiện ích mở rộng Chrome được phát triển bởi tani, và tính năng chính của nó là "Utilities for 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 Plus

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

                        This extension is motivated to reduce annoying routines to manage bibliography.

- Make a button (🔖) to copy a bibtex citation.
- Save a PDF file as the name corresponding to the bibtex identifier.                    

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

Tên Scholar Plus Scholar Plus
ID cicnobgaagpeggnpphhmeoakajhlnoad
URL Chính Thức https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad
Mô tả Utilities for Google Scholar
Kích Thước Tệp 6.35 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2022-09-14
Ngày Phát Hành 2022-09-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển tani
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tani/scholar-plus
URL Trang Trợ Giúp https://github.com/tani/scholar-plus
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scholar Plus",
    "description": "Utilities for Google Scholar",
    "version": "0.3.0",
    "manifest_version": 3,
    "permissions": [
        "downloads",
        "clipboardWrite"
    ],
    "icons": {
        "128": "icon.png"
    },
    "host_permissions": [
        "https:\/\/scholar.google.com\/",
        "https:\/\/scholar.googleusercontent.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scholar.google.com\/*",
                "https:\/\/scholar.google.co.jp\/*",
                "https:\/\/scholar.google.jp\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}