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是由andrew-196開發的Chrome擴展程式,該擴展的主要功能是“A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Github Bookmarks擴展crx文件

下載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 Github Bookmarks
ID ebokekkpmchijniaphcbknendmdafglf
官方網址 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"
    }
}