Execute Order 66

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

Co je Execute Order 66?

Execute Order 66 je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „For those people who have coworkers who swear a little bit too much in their commits...“.

Stáhnout soubor CRX rozšíření Execute Order 66

Stáhněte si soubory rozšíření Execute Order 66 ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Execute Order 66 Execute Order 66
ID hgoanjhaboccoaefceiebdodiillhone
Oficiální URL https://chromewebstore.google.com/detail/execute-order-66/hgoanjhaboccoaefceiebdodiillhone
Popis For those people who have coworkers who swear a little bit too much in their commits...
Velikost souboru 24.11 KB
Počet instalací 24
Aktuální Verze 0.66
Poslední Aktualizace 2016-04-17
Datum Vydání 2016-04-17
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}