Execute Order 66

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

What is Execute Order 66?

Execute Order 66 is a Chrome extension developed by Unknown, and its main feature is "For those people who have coworkers who swear a little bit too much in their commits...".

Download Execute Order 66 Extension CRX File

Download Execute Order 66 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Execute Order 66 Execute Order 66
ID hgoanjhaboccoaefceiebdodiillhone
Official URL https://chromewebstore.google.com/detail/execute-order-66/hgoanjhaboccoaefceiebdodiillhone
Description For those people who have coworkers who swear a little bit too much in their commits...
File Size 24.11 KB
Installation Count 24
Current Version 0.66
Last Updated 2016-04-17
Publish Date 2016-04-17
Rating 5.00/5 Total 3 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
        }
    ]
}