Make GitHub Great Again
Extension to make GitHub great again!
Make GitHub Great Again là gì?
Make GitHub Great Again là một tiện ích mở rộng Chrome được phát triển bởi https://dennissnijder.github.io/MakeGithubGreatAgain, và tính năng chính của nó là "Extension to make GitHub great again!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Make GitHub Great Again
Tải xuống các tệp mở rộng Make GitHub Great Again dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Get your old Github back. Remove the new dark topbar. https://github.com/DennisSnijder/MakeGithubGreatAgain
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Make GitHub Great Again |
ID | gpejlkhibgecggplgogpbgbdpnhogmhk |
URL Chính Thức | https://chromewebstore.google.com/detail/make-github-great-again/gpejlkhibgecggplgogpbgbdpnhogmhk |
Mô tả | Extension to make GitHub great again! |
Kích Thước Tệp | 528 KB |
Số Lần Cài Đặt | 681 |
Phiên Bản Hiện Tại | 2.0.1 |
Cập Nhật Lần Cuối | 2017-08-29 |
Ngày Phát Hành | 2017-08-29 |
Đánh Giá | 4.71/5 Tổng số 38 Đánh Giá |
Nhà Phát Triển | https://dennissnijder.github.io/MakeGithubGreatAgain |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/DennisSnijder/MakeGithubGreatAgain |
URL Trang Trợ Giúp | https://github.com/DennisSnijder/MakeGithubGreatAgain |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |