Manage Web Workers

Manage and block web workers on any page

What is Manage Web Workers?

Manage Web Workers is a Chrome extension developed by Scott Fujan, and its main feature is "Manage and block web workers on any page".

Extension Screenshots

screenshot

Download Manage Web Workers Extension CRX File

Download Manage Web Workers 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

                        Manage and block web workers on any page.

A work in progress. Please provide feedback!                    

Extension Basic Information

Name Manage Web Workers Manage Web Workers
ID mcojhlgdkpgablplpcfgledhplllmnih
Official URL https://chromewebstore.google.com/detail/manage-web-workers/mcojhlgdkpgablplpcfgledhplllmnih
Description Manage and block web workers on any page
File Size 33.54 KB
Installation Count 249
Current Version 0.9
Last Updated 2013-11-04
Publish Date 2013-11-04
Rating 3.89/5 Total 9 Ratings
Developer Scott Fujan
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Manage Web Workers",
    "version": "0.9",
    "description": "Manage and block web workers on any page",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "js\/bg.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "webworkers.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "page_action": {
        "default_icon": "pageaction.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ]
}