Github Bookmarks

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

Github Bookmarks là gì?

Github Bookmarks là một tiện ích mở rộng Chrome được phát triển bởi andrew-196, và tính năng chính của nó là "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Bookmarks

Tải xuống các tệp mở rộng Github Bookmarks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github Bookmarks Github Bookmarks
ID ebokekkpmchijniaphcbknendmdafglf
URL Chính Thức https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf
Mô tả A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Kích Thước Tệp 54.28 KB
Số Lần Cài Đặt 105
Phiên Bản Hiện Tại 0.12.1
Cập Nhật Lần Cuối 2021-11-15
Ngày Phát Hành 2020-06-30
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển andrew-196
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/MountainDrew/github-bookmark-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}