GitHub Gloc

Gives you approximate count of lines of code on GitHub

什麼是GitHub Gloc?

GitHub Gloc是由https://kas-elvirov.com開發的Chrome擴展程式,該擴展的主要功能是“Gives you approximate count of lines of code on GitHub”。

擴展截圖

screenshot
screenshot
screenshot

下載GitHub Gloc擴展crx文件

下載GitHub Gloc擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Works for public and private repositories.
Gives you approximate count of lines of code from:
- project detail page,
- user's repositories,
- organization page,
- search results page, 
- trending page.                    

擴展基本資訊

名稱 GitHub Gloc GitHub Gloc
ID kaodcnpebhdbpaeeemkiobcokcnegdki
官方網址 https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki
簡介 Gives you approximate count of lines of code on GitHub
檔案大小 93.58 KB
安裝次數 10,000
目前版本 8.2.67
更新時間 2023-02-06
上架時間 2020-06-07
評分 4.38/5 共 52 次評分
開發者 https://kas-elvirov.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kas-elvirov/gloc
說明頁面URL https://github.com/kas-elvirov/gloc/issues
隱私政策頁面URL https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md
支援的語言 de,en,en-GB,en-US,fr,nl,es-419,pl,pt-BR,bg,ru,uk,ar,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_name__",
    "short_name": "__MSG_shortName__",
    "author": "__MSG_author__",
    "description": "__MSG_description__",
    "version": "8.2.67",
    "browser_action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "index.html",
        "default_title": "Github Gloc"
    },
    "options_ui": {
        "page": "options.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "*:\/\/*.github.com\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png"
    }
}