Starmark

Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…

Starmark là gì?

Starmark là một tiện ích mở rộng Chrome được phát triển bởi ryansworks, và tính năng chính của nó là "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".

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

screenshot

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

Tải xuống các tệp mở rộng Starmark 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

                        Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a bookmark will be added into the "github-stars" folder in your main Bookmarks.                    

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

Tên Starmark Starmark
ID bkobkbkmhkmlmdolbhnmmmhnccdgaebk
URL Chính Thức https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk
Mô tả Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
Kích Thước Tệp 76.11 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ryansworks
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Starmark",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-16.png",
        "default_title": "Starmark"
    },
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "lodash.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "tabs",
        "bookmarks"
    ]
}