Openreview Quicklook

Quicklook the summary of openreview submission

Openreview Quicklook là gì?

Openreview Quicklook là một tiện ích mở rộng Chrome được phát triển bởi weigq1234, và tính năng chính của nó là "Quicklook the summary of openreview submission".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Openreview Quicklook

Tải xuống các tệp mở rộng Openreview Quicklook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Openreview Quicklook Openreview Quicklook
ID efoabjckcjahofacmgekfhjadpjlmcap
URL Chính Thức https://chromewebstore.google.com/detail/openreview-quicklook/efoabjckcjahofacmgekfhjadpjlmcap
Mô tả Quicklook the summary of openreview submission
Kích Thước Tệp 15.42 KB
Số Lần Cài Đặt 262
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2024-01-18
Ngày Phát Hành 2022-01-10
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển weigq1234
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/weigq/openview_quicklook
URL Trang Trợ Giúp https://github.com/weigq/openview_quicklook
Ngôn Ngữ Được Hỗ Trợ 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'"
}