Openreview Quicklook
Quicklook the summary of openreview submission
什么是Openreview Quicklook?
Openreview Quicklook是由weigq1234开发的Chrome扩展程序,该扩展的主要功能是“Quicklook the summary of openreview submission”。
扩展截图
下载Openreview Quicklook扩展crx文件
下载Openreview Quicklook扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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.                     扩展基本信息
| 名称 |  | 
| ID | efoabjckcjahofacmgekfhjadpjlmcap | 
| 官方URL | https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap | 
| 简介 | Quicklook the summary of openreview submission | 
| 文件大小 | 15.42 KB | 
| 安装次数 | 262 | 
| 当前版本 | 1.2 | 
| 更新时间 | 2024-01-18 | 
| 上架时间 | 2022-01-10 | 
| 评分 | 5.00/5 共3次评分 | 
| 开发者 | weigq1234 | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://github.com/weigq/openview_quicklook | 
| 帮助页面URL | https://github.com/weigq/openview_quicklook | 
| 支持的语言 | 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'"
} | |