Follow for Github
Makes following repository file movements simple!
Co to jest Follow for Github?
Follow for Github to rozszerzenie Chrome opracowane przez Stafford Williams, a jego główną funkcją jest „Makes following repository file movements simple!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Follow for Github
Pobierz pliki rozszerzeń Follow for Github w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | agalokjhnhheienloigiaoohgmjdpned |
Oficjalny URL | https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned |
Opis | Makes following repository file movements simple! |
Rozmiar pliku | 39.41 KB |
Liczba instalacji | 1,875 |
Aktualna Wersja | 1.0.13 |
Ostatnia Aktualizacja | 2021-08-26 |
Data Publikacji | 2018-08-24 |
Ocena | 3.43/5 Łącznie 21 Oceny |
Deweloper | Stafford Williams |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/staff0rd/github-follow-extension |
Adres URL Strony Pomocy | https://github.com/staff0rd/github-follow-extension |
Adres URL Strony Polityki Prywatności | https://staffordwilliams.com/privacy |
Obsługiwane Języki | 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 } ] } |