Friendly GitHub

Makes GitHub a better Social Network

Friendly GitHubとは何ですか?

Friendly GitHubはhermanstarikovによって開発されたChromeの拡張機能で、その主な機能は「Makes GitHub a better Social Network」です。

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

screenshot

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

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

拡張機能の使用方法

                        Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.                    

拡張機能の基本情報

名前 Friendly GitHub Friendly GitHub
ID phnhnfjginnlmbjlcdnjoochcceapfjb
公式URL https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb
説明 Makes GitHub a better Social Network
ファイルサイズ 44.63 KB
インストール数 111
現在のバージョン 18.9.13.2209
最終更新日 2018-09-13
公開日 2018-09-13
評価 5.00/5 合計 2 レビュー
開発者 hermanstarikov
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Hermanya/friendly-github
ヘルプページのURL https://github.com/Hermanya/friendly-github/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Friendly GitHub",
    "short_name": "FGH",
    "version": "18.9.13.2209",
    "description": "Makes GitHub a better Social Network",
    "homepage_url": "https:\/\/github.com\/hermanya\/friendly-github",
    "manifest_version": 2,
    "minimum_chrome_version": "58",
    "applications": {
        "gecko": {
            "id": "{073711a2-ea6d-49f2-98b6-0d7ea340c06f}",
            "strict_min_version": "55.0"
        }
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "https:\/\/api.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html",
        "browser_style": true
    },
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "browser-polyfill.min.js",
                "content.js"
            ]
        }
    ]
}