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."입니다.
확장 프로그램 스크린샷
Google Scholar Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 |
이메일 | [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" ] } ] } |