OctoPermalinker
Fixes broken GitHub links.
OctoPermalinkerとは何ですか?
OctoPermalinkerはJoseph Frazierによって開発されたChromeの拡張機能で、その主な機能は「Fixes broken GitHub links.」です。
拡張機能のスクリーンショット
OctoPermalinker拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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\/"
]
} | |