Code Self Study

A browser extension for Code Self Study (codeselfstudy.com)

Qu'est-ce que Code Self Study ?

Code Self Study est une extension Chrome développée par https://codeselfstudy.com, et sa fonction principale est "A browser extension for Code Self Study (codeselfstudy.com)".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Code Self Study

Téléchargez les fichiers d'extension Code Self Study au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension is for members of Code Self Study, a programming group with in-person meetups in Berkeley, California and online members around the world.

You can use this extension to get easy access to our group's resource and submit interesting links to our forum with one click.

To share a link to the forum, highlight some text on the page, and click the extension's icon. Then click "Share Current Page" and a forum draft will be created for you. You can edit the draft before publishing it.

This extension is Free open-source software. You can read the code and contribute to its development on Github.                    

Informations de Base sur l'Extension

Nom Code Self Study Code Self Study
ID mejalgpjkfdfpemlljeomjdefolbikch
URL Officiel https://chromewebstore.google.com/detail/code-self-study/mejalgpjkfdfpemlljeomjdefolbikch
Description A browser extension for Code Self Study (codeselfstudy.com)
Taille du Fichier 372 KB
Nombre d'Installations 28
Version Actuelle 0.8.3
Dernière Mise à Jour 2020-01-08
Date de Publication 2020-01-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://codeselfstudy.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://codeselfstudy.com/
URL de la Page d'Aide https://github.com/codeselfstudy/codeselfstudy_browser_extension
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Self Study",
    "short_name": "codeselfstudy",
    "description": "A browser extension for Code Self Study (codeselfstudy.com)",
    "version": "0.8.3",
    "icons": {
        "64": "icons\/icon.png"
    },
    "permissions": [
        "*:\/\/*.codeselfstudy.com\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "vendor\/browser-polyfill.js",
            "background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "vendor\/browser-polyfill.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon.png"
        },
        "default_popup": "browserAction\/index.html",
        "default_title": "Code Self Study"
    },
    "options_ui": {
        "page": "options\/index.html"
    }
}