Openreview Quicklook
Quicklook the summary of openreview submission
Wat is Openreview Quicklook?
Openreview Quicklook is een Chrome-extensie ontwikkeld door weigq1234, en de belangrijkste functie is "Quicklook the summary of openreview submission".
Extensie Screenshots
Download het CRX-bestand van de extensie Openreview Quicklook
Download Openreview Quicklook-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Openreview Quicklook |
ID | efoabjckcjahofacmgekfhjadpjlmcap |
Officiële URL | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
Beschrijving | Quicklook the summary of openreview submission |
Bestandsgrootte | 15.42 KB |
Aantal Installaties | 262 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2024-01-18 |
Publicatiedatum | 2022-01-10 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | weigq1234 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/weigq/openview_quicklook |
Help Pagina-URL | https://github.com/weigq/openview_quicklook |
Ondersteunde Talen | 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'" } |