Starify Github repo links

Add Github Stars badges to Github project links

Starify Github repo linksとは何ですか?

Starify Github repo linksはhttps://itenium.beによって開発されたChromeの拡張機能で、その主な機能は「Add Github Stars badges to Github project links」です。

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

screenshot
screenshot

Starify Github repo links拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Scans all links on a page and adds a Github Stars badge to a Github project links. Use Control + Alt + G to activate.

Runs immediately on Google search results, StackOverflow sites, Github.com, npmjs.com etc.                    

拡張機能の基本情報

名前 Starify Github repo links Starify Github repo links
ID kpficnopciffopkhjpckhkgmnlakcmig
公式URL https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig
説明 Add Github Stars badges to Github project links
ファイルサイズ 9.86 KB
インストール数 17
現在のバージョン 1.7
最終更新日 2020-04-27
公開日 2020-04-25
評価 1.00/5 合計 1 レビュー
開発者 https://itenium.be
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://itenium.be/blog/javascript/starify-github-links/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "activeTab",
        "webRequest",
        "https:\/\/img.shields.io\/"
    ],
    "manifest_version": 2,
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "github-stars.user.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "file:\/\/\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "converted_from_user_script": true,
    "description": "Add Github Stars badges to Github project links",
    "name": "Starify Github repo links",
    "short_name": "GithubStarifyLinks",
    "version": "1.7",
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' 'sha256-WOdSzz11\/3cpqOdrm89LBL2UPwEU9EhbDtMy2OciEhs='",
    "icons": {
        "128": "favicon.png"
    }
}