Follow for Github
Makes following repository file movements simple!
Follow for Githubとは何ですか?
Follow for GithubはStafford Williamsによって開発されたChromeの拡張機能で、その主な機能は「Makes following repository file movements simple!」です。
拡張機能のスクリーンショット
Follow for Github拡張機能のCRXファイルをダウンロード
Follow for Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Supports private repositories via Chrome Extensions > Follow for Github > Options This extension will change the View button into Left and Right buttons on Github.com file diffs moves/renames. Clicking the Left button will move you to the full file as it existed in its previous location in the parent commit. Clicking the Right button does what the old View button did, and moves you to the full file on the current commit. Open source! See/contribute to the source at http://github.com/staff0rd/github-follow-extension
拡張機能の基本情報
名前 | |
ID | agalokjhnhheienloigiaoohgmjdpned |
公式URL | https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned |
説明 | Makes following repository file movements simple! |
ファイルサイズ | 39.41 KB |
インストール数 | 1,875 |
現在のバージョン | 1.0.13 |
最終更新日 | 2021-08-26 |
公開日 | 2018-08-24 |
評価 | 3.43/5 合計 21 レビュー |
開発者 | Stafford Williams |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/staff0rd/github-follow-extension |
ヘルプページのURL | https://github.com/staff0rd/github-follow-extension |
プライバシーポリシーページのURL | https://staffordwilliams.com/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.13", "manifest_version": 2, "description": "__MSG_appDescription__", "options_page": "options.html", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "scripts\/commit.js" ], "run_at": "document_end", "all_frames": false }, { "matches": [ "http:\/\/github.com\/*\/commits\/*", "https:\/\/github.com\/*\/commits\/*" ], "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "scripts\/history.js", "scripts\/options.js" ], "run_at": "document_end", "all_frames": false } ] } |