Browser REPL
REPL in Sublime that evals in Chrome
Browser REPLとは何ですか?
Browser REPLはVictor Cottinによって開発されたChromeの拡張機能で、その主な機能は「REPL in Sublime that evals in Chrome」です。
拡張機能のスクリーンショット
Browser REPL拡張機能のCRXファイルをダウンロード
Browser REPL拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | dccffbhkbhifhbmilfhcjfgkmheldkjm |
| 公式URL | https://chrome.google.com/webstore/detail/browser-repl/dccffbhkbhifhbmilfhcjfgkmheldkjm |
| 説明 | REPL in Sublime that evals in Chrome |
| ファイルサイズ | 183 KB |
| インストール数 | 64 |
| 現在のバージョン | 0.1.1 |
| 最終更新日 | 2015-09-26 |
| 公開日 | 2015-09-26 |
| 開発者 | Victor Cottin |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Browser REPL",
"description": "REPL in Sublime that evals in Chrome",
"version": "0.1.1",
"author": "Victor Cottin",
"icons": {
"16": "images\/icon_19.png",
"19": "images\/icon_19.png",
"38": "images\/icon_48.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"permissions": [
"activeTab",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"options_page": "options.html",
"browser_action": {
"default_title": "Browser REPL",
"default_icon": {
"19": "images\/icon_19.png",
"38": "images\/icon_48.png"
}
},
"background": {
"scripts": [
"vendor\/jquery.min.js",
"scripts\/background.js"
]
}
} | |