BPHC Library Paper Tracker
Track your progress for solving papers on BPHC DSpace Library.
What is BPHC Library Paper Tracker?
BPHC Library Paper Tracker is a Chrome extension developed by Akshat, and its main feature is "Track your progress for solving papers on BPHC DSpace Library.".
Extension Screenshots
Download BPHC Library Paper Tracker Extension CRX File
Download BPHC Library Paper Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is the extension to make your BPHC Digital Library navigation easier. Ever clicked on a paper and came back on the list when you forget which one you solved again? Just mark the paper as "Solved", "To Solve" or "Solving" and catch up on them anytime! View the date when you last solved the paper and review faster. Install and enjoy a smooth preparation for exams!
Extension Basic Information
Name | BPHC Library Paper Tracker |
ID | kmlbopjgdglhfpodfaphonlmojndkbon |
Official URL | https://chromewebstore.google.com/detail/bphc-library-paper-tracke/kmlbopjgdglhfpodfaphonlmojndkbon |
Description | Track your progress for solving papers on BPHC DSpace Library. |
File Size | 89.82 KB |
Installation Count | 82 |
Current Version | 0.0.1 |
Last Updated | 2022-06-27 |
Publish Date | 2022-06-27 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Akshat |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://akshat-oke.github.io/privacy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BPHC Library Paper Tracker", "description": "Track your progress for solving papers on BPHC DSpace Library.", "version": "0.0.1", "manifest_version": 3, "icons": { "128": "logo.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/125.22.54.221:8080\/jspui\/handle\/*" ], "run_at": "document_end", "js": [ "content.js" ], "css": [ "content.css" ] } ], "action": { "default_popup": "popup\/popup.html" } } |