Enabled Extensions

Display a list of enabled extensions

What is Enabled Extensions?

Enabled Extensions is a Chrome extension developed by Bill Miller, and its main feature is "Display a list of enabled extensions".

Extension Screenshots

screenshot

Download Enabled Extensions Extension CRX File

Download Enabled Extensions 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

                        Click "Are all Extensions enabled?" to see which extensions are enabled.                    

Extension Basic Information

Name Enabled Extensions Enabled Extensions
ID jnooooelhddiecanngglmchhddanmece
Official URL https://chrome.google.com/webstore/detail/enabled-extensions/jnooooelhddiecanngglmchhddanmece
Description Display a list of enabled extensions
File Size 42.71 KB
Installation Count 17
Current Version 0.1
Last Updated 2014-07-09
Publish Date 2014-07-09
Developer Bill Miller
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enabled Extensions ",
    "description": "Display a list of enabled extensions",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "management",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "pop.js",
                "ext.js"
            ]
        }
    ]
}