OctoPermalinker
Fixes broken GitHub links.
OctoPermalinker là gì?
OctoPermalinker là một tiện ích mở rộng Chrome được phát triển bởi Joseph Frazier, và tính năng chính của nó là "Fixes broken GitHub links.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OctoPermalinker
Tải xuống các tệp mở rộng OctoPermalinker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
URL Chính Thức | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
Mô tả | Fixes broken GitHub links. |
Kích Thước Tệp | 373 KB |
Số Lần Cài Đặt | 239 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2017-05-20 |
Ngày Phát Hành | 2017-05-20 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Joseph Frazier |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/josephfrazier/octopermalinker |
URL Trang Trợ Giúp | https://github.com/josephfrazier/octopermalinker/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |