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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
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
        }
    ]
}