Github Bookmarks
A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Τι είναι το Github Bookmarks;
Το Github Bookmarks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον andrew-196, και η κύρια λειτουργία του είναι "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Github Bookmarks
Λήψη αρχείων επέκτασης Github Bookmarks σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Github Bookmarks |
ID | ebokekkpmchijniaphcbknendmdafglf |
Επίσημο URL | https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf |
Περιγραφή | A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more. |
Μέγεθος Αρχείου | 54.28 KB |
Αριθμός Εγκαταστάσεων | 105 |
Τρέχουσα Έκδοση | 0.12.1 |
Τελευταία Ενημέρωση | 2021-11-15 |
Ημερομηνία Δημοσίευσης | 2020-06-30 |
Αξιολόγηση | 4.33/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | andrew-196 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/MountainDrew/github-bookmark-extension |
Υποστηριζόμενες Γλώσσες | 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" } } |