Google Scholar Tools

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

Google Scholar Toolsとは何ですか?

Google Scholar ToolsはBrian B. Griffithsによって開発されたChromeの拡張機能で、その主な機能は「This extension provides some additional bookmarking and sorting of google scholar results.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Google Scholar Tools拡張機能のCRXファイルをダウンロード

Google Scholar Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Google Scholar Tools Google Scholar Tools
ID iifbfdeeneklajclonmnjbmakdniikep
公式URL https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep
説明 This extension provides some additional bookmarking and sorting of google scholar results.
ファイルサイズ 9.52 KB
インストール数 1,902
現在のバージョン 1.0
最終更新日 2020-12-30
公開日 2020-12-30
開発者 Brian B. Griffiths
Eメール [email protected]
支払い方法 free
対応言語 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"
            ]
        }
    ]
}