GfG to GitHub

Automatically pushes your GeeksForGeeks solution to a GitHub Repository of your choice within seconds on successful submission.

GfG to GitHub là gì?

GfG to GitHub là một tiện ích mở rộng Chrome được phát triển bởi atharvananavate, và tính năng chính của nó là "Automatically pushes your GeeksForGeeks solution to a GitHub Repository of your choice within seconds on successful submission.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GfG to GitHub

Tải xuống các tệp mở rộng GfG to GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        GfG to GitHub is a chrome extension that automatically pushes your GeeksForGeeks solution to a GitHub Repository of your choice within seconds on successful submission.

❓ Why ‘GfG to GitHub’?

📌 In the modern day, GitHub is a developer's primary portfolio. Therefore, this extension aids in centralizing all of your GeeksForGeeks solutions to GitHub in an organized manner.

📌 Also, manually adding your GeeksForGeeks solutions to a GitHub repository is an extremely time-consuming and tedious procedure. Therefore, this extension automates the entire process without you needing to put-in any extra effort.

📌 Centralizing your solutions means easy and fast access to all your solutions.

📌 Having all your solutions in one place helps you to keep track of your progress.

✨ Features :

✅ You can create a new repository / link an existing repository to this extension by simply entering the repository name during the onboarding process.

✅ The extension popup sports a dashboard that maintains difficulty-level-wise count of the problems you have solved on GeeksForGeeks.

✅ Each solution is pushed into a directory named as the difficulty level of that problem. So, the repository is extremely organized.

✅ A README.md file is created for each new problem solved. This README.md file contains the problem details as it appears on the GeeksForGeeks problem's page.

✅ This extension also supports multi-language submissions, which means that if you solve a problem in both Java and C++, a separate file will be created for both languages under the same directory.

✅ A solution file is committed to your GitHub repository only on successful submission on GeeksForGeeks.

✅ The extension popup also features a Dark Mode toggle, so you can choose a theme of your choice.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GfG to GitHub GfG to GitHub
ID gojabhkegjnlnklkkpkglaembhlknkgk
URL Chính Thức https://chromewebstore.google.com/detail/gfg-to-github/gojabhkegjnlnklkkpkglaembhlknkgk
Mô tả Automatically pushes your GeeksForGeeks solution to a GitHub Repository of your choice within seconds on successful submission.
Kích Thước Tệp 726 KB
Số Lần Cài Đặt 2,444
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-11-10
Ngày Phát Hành 2022-11-20
Đánh Giá 4.13/5 Tổng số 15 Đánh Giá
Nhà Phát Triển atharvananavate
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/AtharvaNanavate/GfG-To-GitHub
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GfG to GitHub",
    "description": "Automatically pushes your GeeksForGeeks solution to a GitHub Repository of your choice within seconds on successful submission.",
    "homepage_url": "https:\/\/github.com\/AtharvaNanavate\/GfG-To-GitHub",
    "version": "1.1.2",
    "author": "Atharva Nanavate",
    "action": {
        "default_icon": "assets\/thumbnail.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/logo_128x128.png",
        "48": "assets\/logo_128x128.png",
        "128": "assets\/logo_128x128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/api.github.com\/*",
        "https:\/\/practice.geeksforgeeks.org\/*",
        "https:\/\/www.geeksforgeeks.org\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/extractCode.js",
                "script\/nodeDeletion.js"
            ],
            "matches": [
                "https:\/\/practice.geeksforgeeks.org\/*",
                "https:\/\/www.geeksforgeeks.org\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/practice.geeksforgeeks.org\/*",
                "https:\/\/www.geeksforgeeks.org\/*"
            ],
            "js": [
                "scripts\/localSetup.js",
                "scripts\/geeksForGeeks.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": {
        "extension pages": "script-src 'self'; object-src 'self';"
    }
}