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によって開発されたChromeの拡張機能で、その主な機能は「Count & list all page-defined global variables」です。
拡張機能のスクリーンショット
Window Shopper: log any page's globals拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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 } ] } |