The Khan Academy Extension

A Browser Extension for Khan Academy that adds more features to the site

Τι είναι το The Khan Academy Extension;

Το The Khan Academy Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον KA Extension Developers, και η κύρια λειτουργία του είναι "A Browser Extension for Khan Academy that adds more features to the site".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης The Khan Academy Extension

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

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

                        A chrome extension for Khan Academy.

Join our discord for project updates: https://discord.gg/Bhd9FjN

Features:

* Live editor settings: multiple themes, tab/spaces spacing, and auto-completion and editor toggling
* Copy link button to copy a shortened project link
* View and reply to comments with the popup
* View unread notification number in the extension badge
* Expands the width of the live editor to encompass more of the screen
* Adds information about a program, such as date created and whether the program has been hidden from the hotlist or been guardian approved.
* Adds the amount of flags on a program to the flag button, and hovering on the button will show the flag reasons
* Adds a report button to profile and project pages, which reports the program to guardians faster than flagging
* Adds information like date joined, total votes received, total badges and more to profile pages 
* Adds the ability to remove your votes from a program after voting
* Adds a check for if a program 404 page is actually a hidden program

The developers of this extension are not affiliated in any way with Khan Academy.

Created by the KA Extension Contributors.                    

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

Όνομα The Khan Academy Extension The Khan Academy Extension
ID gniggljddhajnfbkjndcgnomkddfcial
Επίσημο URL https://chromewebstore.google.com/detail/the-khan-academy-extensio/gniggljddhajnfbkjndcgnomkddfcial
Περιγραφή A Browser Extension for Khan Academy that adds more features to the site
Μέγεθος Αρχείου 527 KB
Αριθμός Εγκαταστάσεων 37,946
Τρέχουσα Έκδοση 4.9.2
Τελευταία Ενημέρωση 2023-09-04
Ημερομηνία Δημοσίευσης 2020-03-22
Αξιολόγηση 4.86/5 Συνολικά 43 Αξιολογήσεις
Προγραμματιστής KA Extension Developers
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://discord.gg/Bhd9FjN
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/ka-extension/ka-extension-ts/blob/master/PRIVACY.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "The Khan Academy Extension",
    "short_name": "KA Extension",
    "author": "Khan Academy Extension Developers",
    "homepage_url": "https:\/\/github.com\/ka-extension",
    "version": "4.9.2",
    "description": "A Browser Extension for Khan Academy that adds more features to the site",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "images\/colour\/icon16.png",
        "48": "images\/colour\/icon48.png",
        "128": "images\/colour\/icon128.png"
    },
    "action": {
        "default_title": "Khan Academy Extension",
        "default_icon": {
            "16": "images\/grey\/icon16.png",
            "48": "images\/grey\/icon48.png",
            "128": "images\/grey\/icon128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "dist\/content.js"
            ],
            "matches": [
                "*:\/\/*.khanacademy.org\/*"
            ],
            "css": [
                "styles\/general.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "cookies",
        "webNavigation",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*.khanacademy.org\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/index.js",
                "dist\/popup.js",
                "styles\/*"
            ],
            "matches": [
                "*:\/\/*.khanacademy.org\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "dist\/background.js"
    }
}