Openreview Quicklook

Quicklook the summary of openreview submission

Что такое Openreview Quicklook?

Openreview Quicklook - это расширение Chrome, разработанное weigq1234, и его основная функция - "Quicklook the summary of openreview submission".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Openreview Quicklook

Скачайте файлы расширений 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
Официальный 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'"
}