Openreview Quicklook
Quicklook the summary of openreview submission
What is Openreview Quicklook?
Openreview Quicklook is a Chrome extension developed by weigq1234, and its main feature is "Quicklook the summary of openreview submission".
Extension Screenshots
Download Openreview Quicklook Extension CRX File
Download Openreview Quicklook 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
It is unfriendly to get the submission information quickly, such as the ratings and the final accept/reject decision. This tool display such summary in a box, and you will never need to scroll all the page first before getting such information.
Extension Basic Information
Name | Openreview Quicklook |
ID | efoabjckcjahofacmgekfhjadpjlmcap |
Official URL | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
Description | Quicklook the summary of openreview submission |
File Size | 15.42 KB |
Installation Count | 262 |
Current Version | 1.2 |
Last Updated | 2024-01-18 |
Publish Date | 2022-01-10 |
Rating | 5.00/5 Total 3 Ratings |
Developer | weigq1234 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/weigq/openview_quicklook |
Help Page URL | https://github.com/weigq/openview_quicklook |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Openreview Quicklook", "description": "Quicklook the summary of openreview submission", "version": "1.2", "homepage_url": "https:\/\/github.com\/weigq\/openview_quicklook", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "permissions": [], "browser_action": [], "icons": { "128": "\/logo.png" }, "options_page": "options.html", "web_accessible_resources": [ "right-arrow.svg", "left-arrow.svg" ], "content_scripts": [ { "run_at": "document_end", "css": [ "style.min.css" ], "js": [ "content.min.js" ], "matches": [ "https:\/\/openreview.net\/*" ] } ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |