Openreview Quicklook

Quicklook the summary of openreview submission

Openreview Quicklook क्या है?

Openreview Quicklook weigq1234 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quicklook the summary of openreview submission"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Openreview Quicklook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}