OctoPermalinker
Fixes broken GitHub links.
Apa itu OctoPermalinker?
OctoPermalinker adalah ekstensi Chrome yang dikembangkan oleh Joseph Frazier, dan fitur utamanya adalah "Fixes broken GitHub links.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi OctoPermalinker
Unduh file ekstensi OctoPermalinker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
URL Resmi | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
Deskripsi | Fixes broken GitHub links. |
Ukuran File | 373 KB |
Jumlah Instalasi | 239 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2017-05-20 |
Tanggal Publikasi | 2017-05-20 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Joseph Frazier |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/josephfrazier/octopermalinker |
URL Halaman Bantuan | https://github.com/josephfrazier/octopermalinker/issues |
Bahasa yang Didukung | 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\/" ] } |