Github Bookmarks

A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.

Qu'est-ce que Github Bookmarks ?

Github Bookmarks est une extension Chrome développée par andrew-196, et sa fonction principale est "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Bookmarks

Téléchargez les fichiers d'extension Github Bookmarks 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

                        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.                    

Informations de Base sur l'Extension

Nom Github Bookmarks Github Bookmarks
ID ebokekkpmchijniaphcbknendmdafglf
URL Officiel https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf
Description A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Taille du Fichier 54.28 KB
Nombre d'Installations 105
Version Actuelle 0.12.1
Dernière Mise à Jour 2021-11-15
Date de Publication 2020-06-30
Évaluation 4.33/5 Total 3 Évaluations
Développeur andrew-196
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/MountainDrew/github-bookmark-extension
Langues Prises en Charge 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"
    }
}