Google Scholar Tools

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

What is Google Scholar Tools?

Google Scholar Tools is a Chrome extension developed by Brian B. Griffiths, and its main feature is "This extension provides some additional bookmarking and sorting of google scholar results.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Google Scholar Tools Extension CRX File

Download Google Scholar Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Scholar Tools Google Scholar Tools
ID iifbfdeeneklajclonmnjbmakdniikep
Official URL https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep
Description This extension provides some additional bookmarking and sorting of google scholar results.
File Size 9.52 KB
Installation Count 1,902
Current Version 1.0
Last Updated 2020-12-30
Publish Date 2020-12-30
Developer Brian B. Griffiths
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}