Execute Order 66

For those people who have coworkers who swear a little bit too much in their commits...

Co to jest Execute Order 66?

Execute Order 66 to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „For those people who have coworkers who swear a little bit too much in their commits...”.

Pobierz plik CRX rozszerzenia Execute Order 66

Pobierz pliki rozszerzeń Execute Order 66 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

                        Inspiration
Emotions run high when coding and there is always member of the team that swears a little too much in github commits. Normally this is ok, but when you have hackathon officials or potential partners reviewing it, those vulgar swear words might not give off the gold impression you're striving for.

It simply executes order 66. It cleanses the entire repo of all the jedi, I mean curse words.                    

Podstawowe informacje o rozszerzeniu

Nazwa Execute Order 66 Execute Order 66
ID hgoanjhaboccoaefceiebdodiillhone
Oficjalny URL https://chromewebstore.google.com/detail/execute-order-66/hgoanjhaboccoaefceiebdodiillhone
Opis For those people who have coworkers who swear a little bit too much in their commits...
Rozmiar pliku 24.11 KB
Liczba instalacji 24
Aktualna Wersja 0.66
Ostatnia Aktualizacja 2016-04-17
Data Publikacji 2016-04-17
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Execute Order 66",
    "short_name": "Order 66",
    "description": "For those people who have coworkers who swear a little bit too much in their commits...",
    "version": "0.66",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "logo\/icon16.png",
        "48": "logo\/icon48.png",
        "128": "logo\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "swearWords.js",
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}