Pipe it Down
Reduce diff noise in GitHub pull requests
Cos'è Pipe it Down?
Pipe it Down è un'estensione di Chrome sviluppata da https://thoughtbot.com, e la sua funzione principale è "Reduce diff noise in GitHub pull requests".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pipe it Down
Scarica i file di estensione Pipe it Down in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Sometimes the size of a pull request can be overwhelming, which has an impact on your ability to conduct a thorough review. Does your hand get tired of scrolling past file diffs you don't care about? Have you ever deleted the file DOM elements using Dev Tools? Do you yearn for a better reviewing experience? Pipe it Down helps solve this problem by providing a button to collapse files. The files you collapse are saved in local storage, so revisiting the pull request in the future will automatically collapse them for you. Collapsed files can be expanded again, if you change your mind. Feedback & contributions are welcome at https://github.com/thoughtbot/pipe-it-down.
Informazioni di Base sull'Estensione
Nome | Pipe it Down |
ID | faljmeoihicdhamcpfmafljlhfoljegm |
URL Ufficiale | https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm |
Descrizione | Reduce diff noise in GitHub pull requests |
Dimensione del File | 19.72 KB |
Conteggio Installazioni | 27 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2017-02-24 |
Data di Pubblicazione | 2017-02-24 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://thoughtbot.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/thoughtbot/pipe-it-down |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pipe it Down", "description": "Reduce diff noise in GitHub pull requests", "version": "0.1.0", "author": "Chris Thorn", "icons": { "128": "icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "zepto.min.js", "github.js", "icons.js", "store.js", "file.js", "client.js" ] } ] } |