Sensorizer
Google Chrome Extension implementation of Sensorizer Client
Sensorizerとは何ですか?
Sensorizerはjinによって開発されたChromeの拡張機能で、その主な機能は「Google Chrome Extension implementation of Sensorizer Client」です。
拡張機能のスクリーンショット
Sensorizer拡張機能のCRXファイルをダウンロード
Sensorizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Webページ状に仮想センサを配置して、値を定期的に取得可能にします。 拡張機能の基本情報
| 名前 | |
| ID | mkjooaoejjpnbcccjfmekdebdcjdolnf |
| 公式URL | https://chromewebstore.google.com/detail/sensorizer/mkjooaoejjpnbcccjfmekdebdcjdolnf |
| 説明 | Google Chrome Extension implementation of Sensorizer Client |
| ファイルサイズ | 749 KB |
| インストール数 | 224 |
| 現在のバージョン | 0.7 |
| 最終更新日 | 2019-10-17 |
| 公開日 | 2019-10-17 |
| 開発者 | jin |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.jn.sfc.keio.ac.jp |
| 対応言語 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Sensorizer",
"version": "0.7",
"description": "Google Chrome Extension implementation of Sensorizer Client",
"browser_action": {
"default_icon": "icon19.png",
"default_title": "Sensorize It!",
"default_popup": "popup.html"
},
"options_page": "options.html",
"background": {
"scripts": [
"js\/lib\/jquery-1.10.2.js",
"js\/lib\/jquery.dropotron.min.js",
"js\/lib\/config.js",
"js\/lib\/underscore-min.js",
"js\/lib\/backbone.js",
"js\/lib\/gmaps.js",
"js\/lib\/strophe.js",
"js\/lib\/sox.strophe.pubsub.js",
"js\/lib\/strophe.x.js",
"js\/lib\/jscron.js",
"js\/sox\/SoxClient.js",
"js\/sox\/SoxEventListener.js",
"js\/sox\/Device.js",
"js\/sox\/Transducer.js",
"js\/sox\/SensorData.js",
"js\/Sensorizer.js",
"js\/main.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"css": [
"css\/content.css"
],
"js": [
"js\/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"content_security_policy": "script-src 'self' https:\/\/maps.google.com https:\/\/maps.gstatic.com https:\/\/maps.googleapis.com https:\/\/mts0.googleapis.com https:\/\/mts1.googleapis.com https:\/\/cbks0.googleapis.com 'unsafe-eval'; object-src 'self'",
"permissions": [
"tabs",
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"web_accessible_resources": [
"index.html"
]
} | |