GfG to LeetCode

Leetcode links in GeeksforGeeks Problems

GfG to LeetCodeとは何ですか?

GfG to LeetCodeはAdityaによって開発されたChromeの拡張機能で、その主な機能は「Leetcode links in GeeksforGeeks Problems」です。

拡張機能のスクリーンショット

screenshot

GfG to LeetCode拡張機能のCRXファイルをダウンロード

GfG to LeetCode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension embeds leetcode links in geeksforgeeks problems page.

If you prefer to solve problems on leetcode, this extension provides mapping of geeksforgeeks to leetcode problems, so by just one click this extension will take you to the same problem on leetcode.  

Feel free to suggest any updates and changes regarding the mappings here https://docs.google.com/spreadsheets/d/1Lw3WEKb-fa4FLSH7Q2E1DD7kU1vd4WAOBXf2QDdqrho/edit#gid=0                    

拡張機能の基本情報

名前 GfG to LeetCode GfG to LeetCode
ID dkodhhfojohfonoidpcheichdjbicnfg
公式URL https://chromewebstore.google.com/detail/gfg-to-leetcode/dkodhhfojohfonoidpcheichdjbicnfg
説明 Leetcode links in GeeksforGeeks Problems
ファイルサイズ 267 KB
インストール数 5,000
現在のバージョン 0.2.0
最終更新日 2024-01-05
公開日 2022-07-05
評価 3.73/5 合計 11 レビュー
開発者 Aditya
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GfG to LeetCode",
    "version": "0.2.0",
    "manifest_version": 3,
    "description": "Leetcode links in GeeksforGeeks Problems",
    "icons": {
        "16": "myicon1.png",
        "48": "myicon2.png",
        "128": "myicon3.png"
    },
    "host_permissions": [
        "https:\/\/www.geeksforgeeks.org\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geeksforgeeks.org\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.geeksforgeeks.org\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "action": {
        "default_popup": "src\/inject\/popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/*",
                "icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}