Github Gist logo fixer
Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
Github Gist logo fixer là gì?
Github Gist logo fixer là một tiện ích mở rộng Chrome được phát triển bởi https://hmemcpy.com, và tính năng chính của nó là "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".
Ả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 Github Gist logo fixer
Tải xuống các tệp mở rộng Github Gist logo fixer 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
A tiny bit of JavaScript to have clicking on the top left logo on Github's Gist page take back to github. Solves a personal annoyance of mine, but I hope you'll find it useful as well. Feel free to send me pull requests to improve it!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Gist logo fixer |
ID | bgkfamnjiedcggijadfmjopnmidnkdad |
URL Chính Thức | https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad |
Mô tả | Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist. |
Kích Thước Tệp | 4.12 KB |
Số Lần Cài Đặt | 80 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2015-05-17 |
Ngày Phát Hành | 2015-05-17 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://hmemcpy.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hmemcpy/gisthub |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Gist logo fixer", "description": "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.", "version": "1.1", "permissions": [ "https:\/\/gist.github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/gist.github.com\/*" ], "js": [ "github-inject.js" ], "run_at": "document_end" } ] } |