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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}