Devtools Status Detector
Allows Javascript Developers to know when Chrome Devtools is open/closed.
What is Devtools Status Detector?
Devtools Status Detector is a Chrome extension developed by VO THAI SON, and its main feature is "Allows Javascript Developers to know when Chrome Devtools is open/closed.".
Download Devtools Status Detector Extension CRX File
Download Devtools Status Detector 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
This extension helps Javascript developers detect when Chrome Devtools is open or closed on current page. When Chrome Devtools closes/opens, the extension will raise a event named 'devtoolsStatusChanged' on window.document element. This is example code: function addEventListener(el, eventName, handler) { if (el.addEventListener) { el.addEventListener(eventName, handler); } else { el.attachEvent('on' + eventName, function() { handler.call(el); }); } } // Add an event listener. addEventListener(document, 'devtoolsStatusChanged', function(e) { if (e.detail === 'OPENED') { // Your code when Devtools opens } else { // Your code when Devtools Closed } }); Please leave a comment if you have questions or ideas.
Extension Basic Information
Name | Devtools Status Detector |
ID | pmbbjdhohceladenbdjjoejcanjijoaa |
Official URL | https://chromewebstore.google.com/detail/devtools-status-detector/pmbbjdhohceladenbdjjoejcanjijoaa |
Description | Allows Javascript Developers to know when Chrome Devtools is open/closed. |
File Size | 17.31 KB |
Installation Count | 29 |
Current Version | 0.0.2 |
Last Updated | 2017-08-22 |
Publish Date | 2017-08-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | VO THAI SON |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devtools Status Detector", "version": "0.0.2", "description": "Allows Javascript Developers to know when Chrome Devtools is open\/closed. ", "devtools_page": "devtools.html", "manifest_version": 2, "permissions": [ "tabs", " |