Code Self Study
A browser extension for Code Self Study (codeselfstudy.com)
Was ist Code Self Study?
Code Self Study ist eine Chrome-Erweiterung, die von https://codeselfstudy.com entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension for Code Self Study (codeselfstudy.com)".
Erweiterungsscreenshots
Code Self Study-Erweiterungs-CRX-Datei herunterladen
Laden Sie Code Self Study-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Code Self Study |
ID | mejalgpjkfdfpemlljeomjdefolbikch |
Offizielle URL | https://chromewebstore.google.com/detail/code-self-study/mejalgpjkfdfpemlljeomjdefolbikch |
Beschreibung | A browser extension for Code Self Study (codeselfstudy.com) |
Dateigröße | 372 KB |
Installationsanzahl | 28 |
Aktuelle Version | 0.8.3 |
Letztes Update | 2020-01-08 |
Veröffentlichungsdatum | 2020-01-04 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://codeselfstudy.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://codeselfstudy.com/ |
Hilfeseite URL | https://github.com/codeselfstudy/codeselfstudy_browser_extension |
Unterstützte Sprachen | 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" } } |