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
电子邮箱 [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": [
                ""
            ]
        }
    ]
}