Global Namespace Pollution

Detects and graphs the global namespace pollution

Что такое Global Namespace Pollution?

Global Namespace Pollution - это расширение Chrome, разработанное Chieffancypants, и его основная функция - "Detects and graphs the global namespace pollution".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Global Namespace Pollution

Скачайте файлы расширений Global Namespace Pollution в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        View the total namespace pollution at a glance! This can be useful when assessing your own sites and apps, and for educating your developers on the potential harm of a heavily polluted namespace. 

I have found it particularly useful when reverse engineering other sites as it allows you to quickly discover and browse the objects they use.                    

Основная информация о расширении

Название Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
Официальный URL https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Описание Detects and graphs the global namespace pollution
Размер файла 46.16 KB
Количество установок 13
Текущая Версия 0.4
Последнее Обновление 2013-04-26
Дата публикации 2013-04-26
Рейтинг 3.33/5 Всего 3 оценок
Разработчик Chieffancypants
Тип оплаты free
Официальный сайт расширения https://github.com/chieffancypants/NamespacePollution
URL страницы помощи https://github.com/chieffancypants/NamespacePollution/issues
Поддерживаемые языки en
manifest.json
{
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "src\/popup.html",
        "default_title": "View Namespace Pollution"
    },
    "web_accessible_resources": [
        "src\/detector.js"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Detects and graphs the global namespace pollution",
    "background": {
        "page": "src\/background.html"
    },
    "default_locale": "en",
    "name": "Global Namespace Pollution",
    "permissions": [
        "chrome:\/\/favicon\/",
        "idle",
        "notifications",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "0.4"
}