Openreview Quicklook
Quicklook the summary of openreview submission
Apa itu Openreview Quicklook?
Openreview Quicklook adalah ekstensi Chrome yang dikembangkan oleh weigq1234, dan fitur utamanya adalah "Quicklook the summary of openreview submission".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Openreview Quicklook
Unduh file ekstensi Openreview Quicklook dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Openreview Quicklook |
ID | efoabjckcjahofacmgekfhjadpjlmcap |
URL Resmi | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
Deskripsi | Quicklook the summary of openreview submission |
Ukuran File | 15.42 KB |
Jumlah Instalasi | 262 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2024-01-18 |
Tanggal Publikasi | 2022-01-10 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | weigq1234 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/weigq/openview_quicklook |
URL Halaman Bantuan | https://github.com/weigq/openview_quicklook |
Bahasa yang Didukung | 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'" } |