Github PRs viewer
Check your open/assigned pull requests without opening Github
Github PRs viewerคืออะไร?
Github PRs viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tomas.shrewsbury และคุณลักษณะหลักของมันคือ "Check your open/assigned pull requests without opening Github"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github PRs viewer
ดาวน์โหลดไฟล์ส่วนขยาย Github PRs viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
คำอธิบาย | Check your open/assigned pull requests without opening Github |
ขนาดไฟล์ | 3.48 MB |
จำนวนการติดตั้ง | 25 |
เวอร์ชันปัจจุบัน | 2.0.3 |
อัปเดตครั้งล่าสุด | 2020-05-18 |
วันที่เผยแพร่ | 2020-05-18 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | tomas.shrewsbury |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://candidates.flycricket.io/privacy.html |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github PRs viewer", "short_name": "Github PRs", "version": "2.0.3", "description": "Check your open\/assigned pull requests without opening Github", "author": "Tomas Shrewsbury", "icons": { "64": "icons\/icon-logo.png", "128": "icons\/icon-logo.png" }, "browser_action": { "default_title": "Github Buddy", "default_popup": "index.html" }, "background": { "scripts": [ ".\/oauth2\/oauth2.js", ".\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/robots.txt*" ], "js": [ ".\/oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "https:\/\/github.com\/login\/oauth\/access_token", "idle", "notifications", "contextMenus" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ] } |