Google Scholar Tools

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

Co to jest Google Scholar Tools?

Google Scholar Tools to rozszerzenie Chrome opracowane przez Brian B. Griffiths, a jego główną funkcją jest „This extension provides some additional bookmarking and sorting of google scholar results.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Scholar Tools

Pobierz pliki rozszerzeń Google Scholar Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Scholar Tools Google Scholar Tools
ID iifbfdeeneklajclonmnjbmakdniikep
Oficjalny URL https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep
Opis This extension provides some additional bookmarking and sorting of google scholar results.
Rozmiar pliku 9.52 KB
Liczba instalacji 1,902
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-12-30
Data Publikacji 2020-12-30
Deweloper Brian B. Griffiths
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}