GitHub Diff Whitespace Ignore Button

Adds an 'Ignore whitespace' button on any GitHub file diff page.

Co to jest GitHub Diff Whitespace Ignore Button?

GitHub Diff Whitespace Ignore Button to rozszerzenie Chrome opracowane przez UsainBloot, a jego główną funkcją jest „Adds an 'Ignore whitespace' button on any GitHub file diff page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub Diff Whitespace Ignore Button

Pobierz pliki rozszerzeń GitHub Diff Whitespace Ignore Button 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

                        Inserts an "Ignore Whitespace" button on file diff pages on GitHub                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Diff Whitespace Ignore Button GitHub Diff Whitespace Ignore Button
ID cndheldchmdkjjggoghiildfbolgpeka
Oficjalny URL https://chromewebstore.google.com/detail/github-diff-whitespace-ig/cndheldchmdkjjggoghiildfbolgpeka
Opis Adds an 'Ignore whitespace' button on any GitHub file diff page.
Rozmiar pliku 23.85 KB
Liczba instalacji 25
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2016-10-07
Data Publikacji 2016-10-07
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper UsainBloot
Typ Płatności free
Strona Rozszerzenia https://github.com/UsainBloot/github-whitespace-toggle
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Diff Whitespace Ignore Button",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Adds an 'Ignore whitespace' button on any GitHub file diff page.",
    "homepage_url": "https:\/\/github.com\/UsainBloot\/github-whitespace-toggle",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "GitHub Diff Whitespace Ignore Button"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ]
}