Github Fork Confirmation
Adds a confirmation dialog to the Github and Gist Fork button.
Vad är Github Fork Confirmation?
Github Fork Confirmation är en Chrome-tillägg utvecklad av Alex Pendleton, och dess huvudfunktion är "Adds a confirmation dialog to the Github and Gist Fork button.".
Tilläggsskärmbilder
Ladda ner Github Fork Confirmation-förlängningens CRX-fil
Ladda ner Github Fork Confirmation-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Are you always accidentally forking repositories? I know I am. This Chrome Extension (or User Script!) will help. It adds a confirm dialog to the Fork button on Github repositories and Gists. The source code is available on Github. https://github.com/alexcpendleton/GithubForkConfirmation Updated! August 25, 2015: v1.0.1 - Fixed to accommodate new Github HTML. Sorry for the inconvenience.
Grundläggande Information om Tillägg
Namn | Github Fork Confirmation |
ID | mofjdkidemhjconaodballcmpnaofeod |
Officiell webbadress | https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod |
Beskrivning | Adds a confirmation dialog to the Github and Gist Fork button. |
Filstorlek | 17.08 KB |
Antal Installationer | 125 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2015-08-26 |
Publiceringsdatum | 2015-08-25 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Alex Pendleton |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/alexcpendleton/GithubForkConfirmation |
Hjälpsida URL | https://github.com/alexcpendleton/GithubForkConfirmation |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Fork Confirmation", "version": "1.0.1", "manifest_version": 2, "description": "Adds a confirmation dialog to the Github and Gist Fork button.", "homepage_url": "https:\/\/github.com\/alexcpendleton\/GithubForkConfirmation", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |