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 |
官方網址 | 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 } ] } |