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 |
| 官方網址 | 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"
]
}
} | |