Github Bookmarks

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

¿Qué es Github Bookmarks?

Github Bookmarks es una extensión de Chrome desarrollada por andrew-196, y su función principal es "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Github Bookmarks

Descarga archivos de extensión Github Bookmarks en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Github Bookmarks Github Bookmarks
ID ebokekkpmchijniaphcbknendmdafglf
URL Oficial https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf
Descripción A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Tamaño del Archivo 54.28 KB
Cantidad de Instalaciones 105
Versión Actual 0.12.1
Última Actualización 2021-11-15
Fecha de Publicación 2020-06-30
Calificación 4.33/5 Total de 3 Calificaciones
Desarrollador andrew-196
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/MountainDrew/github-bookmark-extension
Idiomas Soportados 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"
    }
}