Github Bookmarks
A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Github Bookmarksคืออะไร?
Github Bookmarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andrew-196 และคุณลักษณะหลักของมันคือ "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Bookmarks
ดาวน์โหลดไฟล์ส่วนขยาย Github Bookmarks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Github Bookmark extension for keeping your favourite snippets of code to read later, or study on! This extension features descriptions, keeping track of entire files and specific lines, and soon the feature on in-depth markdown notes.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Bookmarks |
ID | ebokekkpmchijniaphcbknendmdafglf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf |
คำอธิบาย | A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more. |
ขนาดไฟล์ | 54.28 KB |
จำนวนการติดตั้ง | 105 |
เวอร์ชันปัจจุบัน | 0.12.1 |
อัปเดตครั้งล่าสุด | 2021-11-15 |
วันที่เผยแพร่ | 2020-06-30 |
คะแนน | 4.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | andrew-196 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/MountainDrew/github-bookmark-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Bookmarks", "short_name": "githubbookmarks", "version": "0.12.1", "description": "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.", "homepage_url": "https:\/\/github.com\/MountainDrew\/github-bookmark-extension", "permissions": [ "history" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "dist\/bookmark-add.js", "dist\/bookmark-header-link.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/_bookmarks_", "https:\/\/github.com\/_bookmarks_\/" ], "js": [ "dist\/bookmark-list.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/_bookmark_\/*" ], "js": [ "dist\/bookmark-show.js" ], "run_at": "document_start" } ], "manifest_version": 2, "icons": { "16": "images\/icons\/16.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" }, "browser_action": { "default_icon": "images\/icons\/48.png", "default_popup": "popup.html" } } |