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".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Window Shopper: log any page's globals

قم بتنزيل ملفات الامتداد Window Shopper: log any page's globals بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Window Shopper: log any page's globals Window Shopper: log any page's globals
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
عنوان صفحة المساعدة 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
        }
    ]
}