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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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'"
}