Snip-It
Copy a simple text snippet about the active tab to the clipboard
Что такое Snip-It?
Snip-It - это расширение Chrome, разработанное crowe.mitch, и его основная функция - "Copy a simple text snippet about the active tab to the clipboard".
Скачать файл CRX расширения Snip-It
Скачайте файлы расширений Snip-It в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Save webpages to your clipboard for easy pasting into a markdown document. Основная информация о расширении
| Название | |
| ID | fbioimabbleddmecllbenileihlpnamf |
| Официальный URL | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
| Описание | Copy a simple text snippet about the active tab to the clipboard |
| Размер файла | 33.33 KB |
| Количество установок | 481 |
| Текущая Версия | 2.0 |
| Последнее Обновление | 2017-01-04 |
| Дата публикации | 2017-01-04 |
| Разработчик | crowe.mitch |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Snip-It",
"description": "Copy a simple text snippet about the active tab to the clipboard",
"version": "2.0",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"jquery-2.1.0.min.js",
"background.js"
],
"persistent": false
},
"commands": {
"tab-snippet": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Copy a snippet of the current tab"
}
},
"browser_action": {
"default_title": "Copy a snippet to the clipboard",
"default_icon": "icon.png"
},
"manifest_version": 2
} | |