AlgoExpertHub

A Google Chrome Extension for AlgoExpert, Push Question Descriptions, ScrathPad and Solutions into Github When Submit Code

Τι είναι το AlgoExpertHub;

Το AlgoExpertHub είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον shuhao.qgg.zhang, και η κύρια λειτουργία του είναι "A Google Chrome Extension for AlgoExpert, Push Question Descriptions, ScrathPad and Solutions into Github When Submit Code".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης AlgoExpertHub

Λήψη αρχείων επέκτασης AlgoExpertHub σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This Google Chrom Extension helps Algoexpert users to automatically push their solutions, questions and scratchpad into Github

Steps:
1. Authorize AlgoExpertHub to access your Github Read and Write Rights by click Authorize Button

2. After successful authorization, create a new repository and link an existing repository by entering repository name into the input field and click "link". Click “unlink" button if you want to unlink the repository

3. Now, solve more questions on https://www.algoexpert.io; code will be automatically commited when you click "Submit Code" button on AlgoExpert if the solution is correct; enjoy more commits show up on your Github and track your progress!

If the extension stops working, please refresh your algoexpert tab or refresh this extension. Chrome background worker will stop working after a long time of inactivity and when reload the extension.

This is an open source project, to view the source, please visit: https://github.com/ShuhaoZQGG/AlgoExpertHub.

This extension doesn't collect any of your personal information, it only requires your Github authorization and Algoexpert content for its functionality. All the information is stored on your own browser.

Version Updates:
1.3.0: now support push scratchpad into github: take a record of your thought process; move business logic away from service worker because sevice worker often stops before the request sent 

1.3.1: fix bugs on content script - background workers connection
1.3.2: fix bugs on scratch pad content                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AlgoExpertHub AlgoExpertHub
ID ffcijfdchhielkpepbogbmmpekpcfnnb
Επίσημο URL https://chromewebstore.google.com/detail/algoexperthub/ffcijfdchhielkpepbogbmmpekpcfnnb
Περιγραφή A Google Chrome Extension for AlgoExpert, Push Question Descriptions, ScrathPad and Solutions into Github When Submit Code
Μέγεθος Αρχείου 27.97 KB
Αριθμός Εγκαταστάσεων 42
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2023-04-10
Ημερομηνία Δημοσίευσης 2023-02-15
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής shuhao.qgg.zhang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ShuhaoZQGG/AlgoExpertHub
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AlgoExpertHub",
    "version": "1.3.2",
    "description": "A Google Chrome Extension for AlgoExpert, Push Question Descriptions, ScrathPad and Solutions into Github When Submit Code",
    "host_permissions": [
        "https:\/\/www.algoexpert.io\/*",
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "alarms",
        "idle"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.algoexpert.io\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "algoexpert.js",
                "content_script.js"
            ],
            "type": "module"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.algoexpert.io\/*",
                "https:\/\/github.com\/*"
            ],
            "resources": [
                "popup.js",
                "authorize.js",
                "algoexpert.js",
                "githubApiCalls.js",
                "content_script.js"
            ],
            "type": "module"
        }
    ]
}