Openreview Quicklook
Quicklook the summary of openreview submission
Openreview Quicklookとは何ですか?
Openreview Quicklookはweigq1234によって開発されたChromeの拡張機能で、その主な機能は「Quicklook the summary of openreview submission」です。
拡張機能のスクリーンショット
Openreview Quicklook拡張機能のCRXファイルをダウンロード
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.                     拡張機能の基本情報
| 名前 |  | 
| 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 | 
| Eメール | [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'"
} | |