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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |