Scripter debugger extension
This extension debugs the scripter blocks and load proccess
What is Scripter debugger extension?
Scripter debugger extension is a Chrome extension developed by roi.benhaim, and its main feature is "This extension debugs the scripter blocks and load proccess".
Extension Screenshots
Download Scripter debugger extension Extension CRX File
Download Scripter debugger extension 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
Extension Basic Information
Name | Scripter debugger extension |
ID | kmojfiapbcpkgehdamehalapjmgaakja |
Official URL | https://chromewebstore.google.com/detail/scripter-debugger-extensi/kmojfiapbcpkgehdamehalapjmgaakja |
Description | This extension debugs the scripter blocks and load proccess |
File Size | 1.04 MB |
Installation Count | 364 |
Current Version | 3.0.2 |
Last Updated | 2014-11-07 |
Publish Date | 2014-11-07 |
Rating | 5.00/5 Total 2 Ratings |
Developer | roi.benhaim |
[email protected] | |
Payment Type | free |
Extension Website | http://scripter.egen.co.il |
Help Page URL | http://scripter.egen.co.il |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scripter debugger extension", "description": "This extension debugs the scripter blocks and load proccess", "version": "3.0.2", "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self' ", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon16.png", "default_popup": "popup.html" }, "background": { "pages": "background.html", "scripts": [ "js\/background.js", "js\/canvas.compressed.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/scripterdebug.js" ], "run_at": "document_start" } ] } |