Mokuren for GitHub
Open GitHub Issues in the sidebar
Mokuren for GitHubคืออะไร?
Mokuren for GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chinp.lab และคุณลักษณะหลักของมันคือ "Open GitHub Issues in the sidebar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mokuren for GitHub
ดาวน์โหลดไฟล์ส่วนขยาย Mokuren for GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nikennffbfoadbajdgnhlngjahofhdef |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/mokuren-for-github/nikennffbfoadbajdgnhlngjahofhdef |
คำอธิบาย | Open GitHub Issues in the sidebar |
ขนาดไฟล์ | 1.37 MB |
จำนวนการติดตั้ง | 338 |
เวอร์ชันปัจจุบัน | 2.4.6 |
อัปเดตครั้งล่าสุด | 2023-12-24 |
วันที่เผยแพร่ | 2021-05-31 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | chinp.lab |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.notion.so/0a0d9c8627c546aa85e5857ef1eaadcd |
ภาษาที่รองรับ | 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" } } |