GfG to LeetCode

Leetcode links in GeeksforGeeks Problems

Co je GfG to LeetCode?

GfG to LeetCode je rozšíření Chrome vyvinuté Aditya, a jeho hlavní funkcí je „Leetcode links in GeeksforGeeks Problems“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GfG to LeetCode

Stáhněte si soubory rozšíření GfG to LeetCode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název GfG to LeetCode GfG to LeetCode
ID dkodhhfojohfonoidpcheichdjbicnfg
Oficiální URL https://chromewebstore.google.com/detail/gfg-to-leetcode/dkodhhfojohfonoidpcheichdjbicnfg
Popis Leetcode links in GeeksforGeeks Problems
Velikost souboru 267 KB
Počet instalací 5,000
Aktuální Verze 0.2.0
Poslední Aktualizace 2024-01-05
Datum Vydání 2022-07-05
Hodnocení 3.73/5 Celkem 11 Hodnocení
Vývojář Aditya
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}