Google Scholar Tools

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

Co je Google Scholar Tools?

Google Scholar Tools je rozšíření Chrome vyvinuté Brian B. Griffiths, a jeho hlavní funkcí je „This extension provides some additional bookmarking and sorting of google scholar results.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Google Scholar Tools

Stáhněte si soubory rozšíření Google Scholar Tools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Google Scholar Tools Google Scholar Tools
ID iifbfdeeneklajclonmnjbmakdniikep
Oficiální URL https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep
Popis This extension provides some additional bookmarking and sorting of google scholar results.
Velikost souboru 9.52 KB
Počet instalací 1,902
Aktuální Verze 1.0
Poslední Aktualizace 2020-12-30
Datum Vydání 2020-12-30
Vývojář Brian B. Griffiths
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}