Github Bookmarks
A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Was ist Github Bookmarks?
Github Bookmarks ist eine Chrome-Erweiterung, die von andrew-196 entwickelt wurde, und ihr Hauptmerkmal ist "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.".
Erweiterungsscreenshots
Github Bookmarks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Bookmarks-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
The Github Bookmark extension for keeping your favourite snippets of code to read later, or study on! This extension features descriptions, keeping track of entire files and specific lines, and soon the feature on in-depth markdown notes.
Grundlegende Informationen zur Erweiterung
Name | Github Bookmarks |
ID | ebokekkpmchijniaphcbknendmdafglf |
Offizielle URL | https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf |
Beschreibung | A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more. |
Dateigröße | 54.28 KB |
Installationsanzahl | 105 |
Aktuelle Version | 0.12.1 |
Letztes Update | 2021-11-15 |
Veröffentlichungsdatum | 2020-06-30 |
Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
Entwickler | andrew-196 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/MountainDrew/github-bookmark-extension |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Bookmarks", "short_name": "githubbookmarks", "version": "0.12.1", "description": "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.", "homepage_url": "https:\/\/github.com\/MountainDrew\/github-bookmark-extension", "permissions": [ "history" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "dist\/bookmark-add.js", "dist\/bookmark-header-link.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/_bookmarks_", "https:\/\/github.com\/_bookmarks_\/" ], "js": [ "dist\/bookmark-list.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/_bookmark_\/*" ], "js": [ "dist\/bookmark-show.js" ], "run_at": "document_start" } ], "manifest_version": 2, "icons": { "16": "images\/icons\/16.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" }, "browser_action": { "default_icon": "images\/icons\/48.png", "default_popup": "popup.html" } } |