Make GitHub Great Again
Extension to make GitHub great again!
Make GitHub Great Againとは何ですか?
Make GitHub Great Againはhttps://dennissnijder.github.io/MakeGithubGreatAgainによって開発されたChromeの拡張機能で、その主な機能は「Extension to make GitHub great again!」です。
拡張機能のスクリーンショット
Make GitHub Great Again拡張機能のCRXファイルをダウンロード
Make GitHub Great Again拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Get your old Github back. Remove the new dark topbar.
https://github.com/DennisSnijder/MakeGithubGreatAgain 拡張機能の基本情報
| 名前 | |
| ID | gpejlkhibgecggplgogpbgbdpnhogmhk |
| 公式URL | https://chromewebstore.google.com/detail/make-github-great-again/gpejlkhibgecggplgogpbgbdpnhogmhk |
| 説明 | Extension to make GitHub great again! |
| ファイルサイズ | 528 KB |
| インストール数 | 681 |
| 現在のバージョン | 2.0.1 |
| 最終更新日 | 2017-08-29 |
| 公開日 | 2017-08-29 |
| 評価 | 4.71/5 合計 38 レビュー |
| 開発者 | https://dennissnijder.github.io/MakeGithubGreatAgain |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/DennisSnijder/MakeGithubGreatAgain |
| ヘルプページのURL | https://github.com/DennisSnijder/MakeGithubGreatAgain |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Make GitHub Great Again",
"version": "2.0.1",
"description": "Extension to make GitHub great again!",
"minimum_chrome_version": "26",
"icons": {
"16": "assets\/icon_16.png",
"48": "assets\/icon_48.png",
"128": "assets\/icon_128.png"
},
"page_action": {
"default_title": "Toggle light\/dark header"
},
"permissions": [
"storage"
],
"background": {
"persistent": false,
"scripts": [
"src\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*",
"*:\/\/*.github.com\/*"
],
"js": [
"src\/content_script.js"
],
"css": [
"src\/header.css",
"src\/links.css",
"src\/save-the-colors.css",
"src\/fonts.css"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "src\/options.html",
"chrome_style": true
}
} | |