Execute Order 66

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

Execute Order 66 là gì?

Execute Order 66 là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "For those people who have coworkers who swear a little bit too much in their commits...".

Tải xuống tệp CRX của tiện ích mở rộng Execute Order 66

Tải xuống các tệp mở rộng Execute Order 66 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Execute Order 66 Execute Order 66
ID hgoanjhaboccoaefceiebdodiillhone
URL Chính Thức https://chromewebstore.google.com/detail/execute-order-66/hgoanjhaboccoaefceiebdodiillhone
Mô tả For those people who have coworkers who swear a little bit too much in their commits...
Kích Thước Tệp 24.11 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 0.66
Cập Nhật Lần Cuối 2016-04-17
Ngày Phát Hành 2016-04-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}