Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Github Stars Managerคืออะไร?
Github Stars Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gabriel Godoy และคุณลักษณะหลักของมันคือ "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Stars Manager
ดาวน์โหลดไฟล์ส่วนขยาย Github Stars Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
คำอธิบาย | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
ขนาดไฟล์ | 149 KB |
จำนวนการติดตั้ง | 245 |
เวอร์ชันปัจจุบัน | 1.9 |
อัปเดตครั้งล่าสุด | 2018-05-23 |
วันที่เผยแพร่ | 2018-05-23 |
คะแนน | 3.83/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | Gabriel Godoy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/gabrielgodoy/github-stars-manager |
URL หน้าช่วยเหลือ | https://github.com/gabrielgodoy/github-stars-manager/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Stars Manager", "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.", "version": "1.9", "browser_action": { "default_icon": "src\/assets\/images\/icons\/icon.png" }, "icons": { "16": "src\/assets\/images\/icons\/icon16.png", "48": "src\/assets\/images\/icons\/icon48.png", "128": "src\/assets\/images\/icons\/icon128.png" }, "permissions": [ "contextMenus", "bookmarks", "tabs", "activeTab", "storage" ], "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "dist\/content_script.js" ], "css": [ "dist\/main.css" ] } ] } |