Scholar Plus
Utilities for Google Scholar
Scholar Plusคืออะไร?
Scholar Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tani และคุณลักษณะหลักของมันคือ "Utilities for Google Scholar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scholar Plus
ดาวน์โหลดไฟล์ส่วนขยาย Scholar Plus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is motivated to reduce annoying routines to manage bibliography. - Make a button (🔖) to copy a bibtex citation. - Save a PDF file as the name corresponding to the bibtex identifier.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Scholar Plus |
ID | cicnobgaagpeggnpphhmeoakajhlnoad |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad |
คำอธิบาย | Utilities for Google Scholar |
ขนาดไฟล์ | 6.35 KB |
จำนวนการติดตั้ง | 56 |
เวอร์ชันปัจจุบัน | 0.3.0 |
อัปเดตครั้งล่าสุด | 2022-09-14 |
วันที่เผยแพร่ | 2022-09-05 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | tani |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tani/scholar-plus |
URL หน้าช่วยเหลือ | https://github.com/tani/scholar-plus |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scholar Plus", "description": "Utilities for Google Scholar", "version": "0.3.0", "manifest_version": 3, "permissions": [ "downloads", "clipboardWrite" ], "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/scholar.google.com\/", "https:\/\/scholar.googleusercontent.com\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/scholar.google.com\/*", "https:\/\/scholar.google.co.jp\/*", "https:\/\/scholar.google.jp\/*" ], "js": [ "content.js" ] } ] } |