Openreview Quicklook

Quicklook the summary of openreview submission

什麼是Openreview Quicklook?

Openreview Quicklook是由weigq1234開發的Chrome擴展程式,該擴展的主要功能是“Quicklook the summary of openreview submission”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Openreview Quicklook Openreview Quicklook
ID efoabjckcjahofacmgekfhjadpjlmcap
官方網址 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'"
}