Script Panel
Allows to create quick buttons with your JS !
Script Panelとは何ですか?
Script Panelはhttp://sintosp.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Allows to create quick buttons with your JS !」です。
拡張機能のスクリーンショット
Script Panel拡張機能のCRXファイルをダウンロード
Script Panel拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easy to use extension to collect JavaScript scripts in a single place, group them, import/export script pakages in few mouse clicks.
* Go to options page to create/import/export scripts;
* Open browser on any machine (under your Google account) and use the same synchronized scripts.
GIT: https://github.com/wideserg/CE/tree/master/ScriptPanel
Packages repository: https://github.com/wideserg/CE/tree/master/ScriptPanel/packages 拡張機能の基本情報
| 名前 | |
| ID | nkadepnecnanfaoinkachcnjbfagedlh |
| 公式URL | https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh |
| 説明 | Allows to create quick buttons with your JS ! |
| ファイルサイズ | 173 KB |
| インストール数 | 75 |
| 現在のバージョン | 0.9.1 |
| 最終更新日 | 2019-03-08 |
| 公開日 | 2019-03-08 |
| 開発者 | http://sintosp.blogspot.com |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Script Panel",
"short_name": "ScriptPanel",
"author": "Sergey Shiroky",
"homepage_url": "http:\/\/sintosp.blogspot.com\/",
"version": "0.9.1",
"description": "Allows to create quick buttons with your JS !",
"background": {
"scripts": [
"scripts\/bg.js"
]
},
"icons": {
"16": "images\/logo-16.png",
"48": "images\/logo-48.png",
"128": "images\/logo-128.png"
},
"options_ui": {
"page": "pages\/options.html",
"chrome_style": true,
"open_in_tab": true
},
"browser_action": {
"default_icon": "images\/logo-16.png",
"default_popup": "pages\/infobar.html"
},
"permissions": [
"tabs",
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/cs.js"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2
} | |