GitHub Confirm It
Quickly add repo name to confirm GitHub repo changes
GitHub Confirm Itคืออะไร?
GitHub Confirm It เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Saqib Ameen และคุณลักษณะหลักของมันคือ "Quickly add repo name to confirm GitHub repo changes"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Confirm It
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Confirm It ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly add repository name to confirm actions on GitHub with just a single click. It helps you stay productive by saving your time and helping you focus on what matters. Secure and Open Source. 🧞♂️ IDEA Whenever we have to perform any action in from the Danger Zone section of GitHub repository options, such as: - Change Visibility - Transfer Ownership - Archive Repository - Delete Repository It asks to write username/repository-name. It's tedious to write it every time you perform any of these actions or want to quickly get done with it. That's why I created this extension, which lets you quickly type that thing for you and perform the action. Just a single click away. 🔆 GETTING STARTED Once you install it, it will add a button inside your input box to quickly insert the text. Go to the Settings of your repository, under the Danger Zone heading, click on any action. You'll notice the small insert text icon in your input. Click on it to insert the text. A quick GIF for you: 📋 PERMISSIONS Only requires content_script permission which only run on the settings page of your repository. 👨💻 CONTRIBUTE The extension is completely open source. Feel free to checkout and contribute to it. https://www.saqib.dev/gci 👋 SAY HI! Twitter: https://twitter.com/saqibameen GitHub: https://github.com/saqibameen Website: https://www.saqib.dev By developer, for the developers with ❤️.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Confirm It |
ID | bphgmpcnpcgodbpihggodaejphlkgnkg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-confirm-it/bphgmpcnpcgodbpihggodaejphlkgnkg |
คำอธิบาย | Quickly add repo name to confirm GitHub repo changes |
ขนาดไฟล์ | 23.46 KB |
จำนวนการติดตั้ง | 30 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2020-07-05 |
วันที่เผยแพร่ | 2020-07-05 |
คะแนน | 4.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Saqib Ameen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.saqib.dev/gci |
URL หน้าช่วยเหลือ | https://www.saqib.dev/gci |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Confirm It", "version": "1.0", "description": "Quickly add repo name to confirm GitHub repo changes", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/settings" ], "js": [ "githubExtends.js" ], "css": [ "sa-styles.css" ] } ], "web_accessible_resources": [ "images\/*.svg" ], "page_action": { "default_icon": { "16": "images\/icons\/16.png", "32": "images\/icons\/32.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" } }, "icons": { "16": "images\/icons\/16.png", "32": "images\/icons\/32.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" }, "manifest_version": 2 } |