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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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'"
}