Scholar Plus
Utilities for Google Scholar
Scholar Plus क्या है?
Scholar Plus tani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Utilities for Google Scholar"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Scholar Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |