Window Shopper: log any page's globals
Count & list all page-defined global variables
Что такое Window Shopper: log any page's globals?
Window Shopper: log any page's globals - это расширение Chrome, разработанное https://rileyjshaw.com, и его основная функция - "Count & list all page-defined global variables".
Снимки экрана расширения
Скачать файл CRX расширения Window Shopper: log any page's globals
Скачайте файлы расширений Window Shopper: log any page's globals в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Usage:
The extension's icon badge shows how many globals are defined on a page. Click the icon to log a list of all page-defined global variables to the console.
Licence: MIT
Project page: https://github.com/rileyjshaw/window-shopper Основная информация о расширении
| Название | |
| ID | mhfpgolappjpepejmfpomfpemdidpkng |
| Официальный URL | https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng |
| Описание | Count & list all page-defined global variables |
| Размер файла | 36.42 KB |
| Количество установок | 15 |
| Текущая Версия | 1.2.2 |
| Последнее Обновление | 2016-05-25 |
| Дата публикации | 2016-05-24 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | https://rileyjshaw.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/rileyjshaw/window-shopper |
| URL страницы помощи | https://github.com/rileyjshaw/window-shopper/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"short_name": "List globals",
"version": "1.2.2",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"browser_action": {
"default_icon": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"default_title": "Window Shopper",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
]
} | |