pubsub logger
logger jquery tiny pubsub event
What is pubsub logger?
pubsub logger is a Chrome extension developed by jextensions, and its main feature is "logger jquery tiny pubsub event".
Extension Screenshots
Download pubsub logger Extension CRX File
Download pubsub logger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
You can logger your Pub/Sub event easily. source code: https://github.com/liyaodong/pubsub_logger Now only support this pub/sub implementation: https://github.com/cowboy/jquery-tiny-pubsub
Extension Basic Information
Name | |
ID | ffpmgghannindojpckbnlakejhfheopn |
Official URL | https://chrome.google.com/webstore/detail/pubsub-logger/ffpmgghannindojpckbnlakejhfheopn |
Description | logger jquery tiny pubsub event |
File Size | 16.69 KB |
Installation Count | 15 |
Current Version | 0.0.3 |
Last Updated | 2016-10-30 |
Publish Date | 2016-10-30 |
Developer | jextensions |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "permissions": [ "tabs", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/www.xxx.com\/xxx" ], "js": [ "scripts\/main.js" ] } ], "web_accessible_resources": [ "scripts\/main.js" ] } |