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
官方網址 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
電子郵箱 [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"
    }
}