Mokuren for GitHub
Open GitHub Issues in the sidebar
Mokuren for GitHub란 무엇입니까?
Mokuren for GitHub은(는) chinp.lab에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open GitHub Issues in the sidebar"입니다.
확장 프로그램 스크린샷
Mokuren for GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |