Google Scholar Tools
This extension provides some additional bookmarking and sorting of google scholar results.
Was ist Google Scholar Tools?
Google Scholar Tools ist eine Chrome-Erweiterung, die von Brian B. Griffiths entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides some additional bookmarking and sorting of google scholar results.".
Erweiterungsscreenshots
Google Scholar Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Scholar Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iifbfdeeneklajclonmnjbmakdniikep |
| Offizielle URL | https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep |
| Beschreibung | This extension provides some additional bookmarking and sorting of google scholar results. |
| Dateigröße | 9.52 KB |
| Installationsanzahl | 1,902 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2020-12-30 |
| Veröffentlichungsdatum | 2020-12-30 |
| Entwickler | Brian B. Griffiths |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |