Google Scholar Tools
This extension provides some additional bookmarking and sorting of google scholar results.
Wat is Google Scholar Tools?
Google Scholar Tools is een Chrome-extensie ontwikkeld door Brian B. Griffiths, en de belangrijkste functie is "This extension provides some additional bookmarking and sorting of google scholar results.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Scholar Tools
Download Google Scholar Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | iifbfdeeneklajclonmnjbmakdniikep |
| Officiële URL | https://chromewebstore.google.com/detail/google-scholar-tools/iifbfdeeneklajclonmnjbmakdniikep |
| Beschrijving | This extension provides some additional bookmarking and sorting of google scholar results. |
| Bestandsgrootte | 9.52 KB |
| Aantal Installaties | 1,902 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2020-12-30 |
| Publicatiedatum | 2020-12-30 |
| Ontwikkelaar | Brian B. Griffiths |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |