Follow for Github
Makes following repository file movements simple!
Apa itu Follow for Github?
Follow for Github adalah ekstensi Chrome yang dikembangkan oleh Stafford Williams, dan fitur utamanya adalah "Makes following repository file movements simple!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Follow for Github
Unduh file ekstensi Follow for Github dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | agalokjhnhheienloigiaoohgmjdpned |
URL Resmi | https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned |
Deskripsi | Makes following repository file movements simple! |
Ukuran File | 39.41 KB |
Jumlah Instalasi | 1,875 |
Versi Saat Ini | 1.0.13 |
Terakhir Diperbarui | 2021-08-26 |
Tanggal Publikasi | 2018-08-24 |
Penilaian | 3.43/5 Total 21 Penilaian |
Pengembang | Stafford Williams |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/staff0rd/github-follow-extension |
URL Halaman Bantuan | https://github.com/staff0rd/github-follow-extension |
URL Halaman Kebijakan Privasi | https://staffordwilliams.com/privacy |
Bahasa yang Didukung | 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 } ] } |