Openreview Quicklook
Quicklook the summary of openreview submission
Vad är Openreview Quicklook?
Openreview Quicklook är en Chrome-tillägg utvecklad av weigq1234, och dess huvudfunktion är "Quicklook the summary of openreview submission".
Tilläggsskärmbilder
Ladda ner Openreview Quicklook-förlängningens CRX-fil
Ladda ner Openreview Quicklook-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | efoabjckcjahofacmgekfhjadpjlmcap |
| Officiell webbadress | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap |
| Beskrivning | Quicklook the summary of openreview submission |
| Filstorlek | 15.42 KB |
| Antal Installationer | 262 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2024-01-18 |
| Publiceringsdatum | 2022-01-10 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | weigq1234 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/weigq/openview_quicklook |
| Hjälpsida URL | https://github.com/weigq/openview_quicklook |
| Stödda Språk | 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'"
} | |