Scholar Plus

Utilities for Google Scholar

ما هو Scholar Plus؟

Scholar Plus هو إضافة Chrome تم تطويرها بواسطة tani، والميزة الرئيسية لها هي "Utilities for Google Scholar".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Scholar Plus

قم بتنزيل ملفات الامتداد Scholar Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Scholar Plus Scholar Plus
ID cicnobgaagpeggnpphhmeoakajhlnoad
عنوان URL الرسمي https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad
الوصف Utilities for Google Scholar
حجم الملف 6.35 KB
عدد التثبيتات 56
النسخة الحالية 0.3.0
آخر تحديث 2022-09-14
تاريخ النشر 2022-09-05
تقييم 5.00/5 مجموع تقييمات 1
المطور tani
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tani/scholar-plus
عنوان صفحة المساعدة https://github.com/tani/scholar-plus
اللغات المدعومة 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"
            ]
        }
    ]
}