Github Bookmarks

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

Co to jest Github Bookmarks?

Github Bookmarks to rozszerzenie Chrome opracowane przez andrew-196, a jego główną funkcją jest „A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Github Bookmarks

Pobierz pliki rozszerzeń Github Bookmarks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Bookmarks Github Bookmarks
ID ebokekkpmchijniaphcbknendmdafglf
Oficjalny URL https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf
Opis A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Rozmiar pliku 54.28 KB
Liczba instalacji 105
Aktualna Wersja 0.12.1
Ostatnia Aktualizacja 2021-11-15
Data Publikacji 2020-06-30
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper andrew-196
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/MountainDrew/github-bookmark-extension
Obsługiwane Języki 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"
    }
}