Scripter debugger extension
This extension debugs the scripter blocks and load proccess
Scripter debugger extensionとは何ですか?
Scripter debugger extensionはroi.benhaimによって開発されたChromeの拡張機能で、その主な機能は「This extension debugs the scripter blocks and load proccess」です。
拡張機能のスクリーンショット
Scripter debugger extension拡張機能のCRXファイルをダウンロード
Scripter debugger extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | kmojfiapbcpkgehdamehalapjmgaakja |
| 公式URL | https://chromewebstore.google.com/detail/scripter-debugger-extensi/kmojfiapbcpkgehdamehalapjmgaakja |
| 説明 | This extension debugs the scripter blocks and load proccess |
| ファイルサイズ | 1.04 MB |
| インストール数 | 364 |
| 現在のバージョン | 3.0.2 |
| 最終更新日 | 2014-11-07 |
| 公開日 | 2014-11-07 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | roi.benhaim |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://scripter.egen.co.il |
| ヘルプページのURL | http://scripter.egen.co.il |
| 対応言語 | 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"
}
]
} | |