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 |
电子邮箱 | [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 } ] } |