Script Panel
Allows to create quick buttons with your JS !
Что такое Script Panel?
Script Panel - это расширение Chrome, разработанное http://sintosp.blogspot.com, и его основная функция - "Allows to create quick buttons with your JS !".
Снимки экрана расширения
Скачать файл CRX расширения Script Panel
Скачайте файлы расширений 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
} | |