Openreview Quicklook
Quicklook the summary of openreview submission
Cos'è Openreview Quicklook?
Openreview Quicklook è un'estensione di Chrome sviluppata da weigq1234, e la sua funzione principale è "Quicklook the summary of openreview submission".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Openreview Quicklook
Scarica i file di estensione Openreview Quicklook in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Openreview Quicklook |
ID | efoabjckcjahofacmgekfhjadpjlmcap |
URL Ufficiale | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
Descrizione | Quicklook the summary of openreview submission |
Dimensione del File | 15.42 KB |
Conteggio Installazioni | 262 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2024-01-18 |
Data di Pubblicazione | 2022-01-10 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | weigq1234 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/weigq/openview_quicklook |
URL della Pagina di Aiuto | https://github.com/weigq/openview_quicklook |
Lingue Supportate | 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'" } |