Openreview Quicklook
Quicklook the summary of openreview submission
Qu'est-ce que Openreview Quicklook ?
Openreview Quicklook est une extension Chrome développée par weigq1234, et sa fonction principale est "Quicklook the summary of openreview submission".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Openreview Quicklook
Téléchargez les fichiers d'extension Openreview Quicklook au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Openreview Quicklook |
ID | efoabjckcjahofacmgekfhjadpjlmcap |
URL Officiel | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
Description | Quicklook the summary of openreview submission |
Taille du Fichier | 15.42 KB |
Nombre d'Installations | 262 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2024-01-18 |
Date de Publication | 2022-01-10 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | weigq1234 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/weigq/openview_quicklook |
URL de la Page d'Aide | https://github.com/weigq/openview_quicklook |
Langues Prises en Charge | 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'" } |