OctoPermalinker
Fixes broken GitHub links.
OctoPermalinkerคืออะไร?
OctoPermalinker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joseph Frazier และคุณลักษณะหลักของมันคือ "Fixes broken GitHub links."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OctoPermalinker
ดาวน์โหลดไฟล์ส่วนขยาย OctoPermalinker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
OctoPermalinker is a browser extension that searches GitHub comments/files for links to files on branches, and adds a link to where the branch pointed when the comment/file was made/updated. This helps you avoid following a link that was broken after being posted. For context, here's some discussion about broken GitHub links: https://news.ycombinator.com/item?id=8046710
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
คำอธิบาย | Fixes broken GitHub links. |
ขนาดไฟล์ | 373 KB |
จำนวนการติดตั้ง | 239 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2017-05-20 |
วันที่เผยแพร่ | 2017-05-20 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Joseph Frazier |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/josephfrazier/octopermalinker |
URL หน้าช่วยเหลือ | https://github.com/josephfrazier/octopermalinker/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoPermalinker", "version": "1.0.0", "manifest_version": 2, "author": "Joseph Frazier", "description": "Fixes broken GitHub links.", "homepage_url": "https:\/\/github.com\/josephfrazier\/octopermalinker", "icons": { "212": "link-icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "app.js" ], "run_at": "document_idle", "all_frames": false } ], "web_accessible_resources": [ "link-icon.png" ], "permissions": [ "storage", "https:\/\/github.com\/", "https:\/\/gist.github.com\/" ] } |