Mokuren for GitHub
Open GitHub Issues in the sidebar
Mokuren for GitHub là gì?
Mokuren for GitHub là một tiện ích mở rộng Chrome được phát triển bởi chinp.lab, và tính năng chính của nó là "Open GitHub Issues in the sidebar".
Ả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 Mokuren for GitHub
Tải xuống các tệp mở rộng Mokuren for GitHub 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
GitHub users spend a lot of time organizing issues! Why not use the sidebar to save a little time? The time it takes to move from one issue to the next, tab to another... it's a small cost. But over the course of a long day, it can add up to a huge cost. With Mokuren, you can do exactly the same thing as before, without moving tabs or pages. *Mokuren 2.0 is available now without a GitHub login!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nikennffbfoadbajdgnhlngjahofhdef |
URL Chính Thức | https://chrome.google.com/webstore/detail/mokuren-for-github/nikennffbfoadbajdgnhlngjahofhdef |
Mô tả | Open GitHub Issues in the sidebar |
Kích Thước Tệp | 1.37 MB |
Số Lần Cài Đặt | 338 |
Phiên Bản Hiện Tại | 2.4.6 |
Cập Nhật Lần Cuối | 2023-12-24 |
Ngày Phát Hành | 2021-05-31 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | chinp.lab |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.notion.so/0a0d9c8627c546aa85e5857ef1eaadcd |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "version": "2.4.6", "description": "__MSG_extDesc__", "default_locale": "en", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "tabs", "storage", "identity", "identity.email", "declarativeNetRequest" ], "host_permissions": [ "https:\/\/github.com\/*" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_idle", "all_frames": false, "js": [ "js\/content-script.js" ] }, { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_end", "all_frames": true, "js": [ "js\/iframe-content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/images\/*.png" ], "matches": [ "https:\/\/github.com\/*" ] }, { "resources": [ "auth.html" ], "matches": [ "https:\/\/github.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/apis.google.com\/' 'https:\/\/www.gstatic.com\/' 'https:\/\/*firebaseio.com' 'https:\/\/www.googleapis.com' 'https:\/\/ajax.googleapis.com' 'https:\/\/github.githubassets.com'; object-src' self'" }, "commands": { "closeSidebar": { "suggested_key": { "default": "Ctrl+Shift+S" }, "description": "Close sidebar" } }, "omnibox": { "keyword": "mo" } } |