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とは何ですか?

Starmarkはryansworksによって開発されたChromeの拡張機能で、その主な機能は「Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…」です。

拡張機能のスクリーンショット

screenshot

Starmark拡張機能のCRXファイルをダウンロード

Starmark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Starmark Starmark
ID bkobkbkmhkmlmdolbhnmmmhnccdgaebk
公式URL https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk
説明 Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
ファイルサイズ 76.11 KB
インストール数 61
現在のバージョン 0.0.1
最終更新日 2019-03-08
公開日 2019-03-08
評価 5.00/5 合計 2 レビュー
開発者 ryansworks
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}