Openreview Quicklook
Quicklook the summary of openreview submission
O que é Openreview Quicklook?
Openreview Quicklook é uma extensão do Chrome desenvolvida por weigq1234, e sua principal característica é "Quicklook the summary of openreview submission".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Openreview Quicklook
Baixe arquivos de extensão Openreview Quicklook no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Openreview Quicklook |
ID | efoabjckcjahofacmgekfhjadpjlmcap |
URL Oficial | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
Descrição | Quicklook the summary of openreview submission |
Tamanho do Arquivo | 15.42 KB |
Contagem de Instalações | 262 |
Versão Atual | 1.2 |
Última Atualização | 2024-01-18 |
Data de Publicação | 2022-01-10 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | weigq1234 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/weigq/openview_quicklook |
URL da Página de Ajuda | https://github.com/weigq/openview_quicklook |
Idiomas Suportados | 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'" } |