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 https://rileyjshaw.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Count & list all page-defined global variables"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Window Shopper: log any page's globals एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } ] } |