BBCodePaste
Add a context menu to paste HTML formatted clipboard text as BBCode.
Что такое BBCodePaste?
BBCodePaste - это расширение Chrome, разработанное David J., и его основная функция - "Add a context menu to paste HTML formatted clipboard text as BBCode.".
Снимки экрана расширения
Скачать файл CRX расширения BBCodePaste
Скачайте файлы расширений BBCodePaste в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds a context menu to paste content from the clipboard which converts HTML Formatted Text to BBCode.
Useful to paste formatted text into web-forum software such as phpBB.
Source code available on github. https://github.com/jeske/BBCodePaste Основная информация о расширении
| Название | |
| ID | gendnhpciglkoaccpighggnohmmogfnp |
| Официальный URL | https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp |
| Описание | Add a context menu to paste HTML formatted clipboard text as BBCode. |
| Размер файла | 8.61 KB |
| Количество установок | 68 |
| Текущая Версия | 1.3 |
| Последнее Обновление | 2017-05-02 |
| Дата публикации | 2017-05-02 |
| Рейтинг | 2.75/5 Всего 4 оценок |
| Разработчик | David J. |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "BBCodePaste",
"version": "1.3",
"manifest_version": 2,
"description": "Add a context menu to paste HTML formatted clipboard text as BBCode.",
"permissions": [
"contextMenus",
"tabs",
"clipboardRead"
],
"icons": {
"16": "bbcodepasteicon.png",
"48": "bbcodepasteicon.png",
"128": "bbcodepasteicon.png"
},
"background": {
"scripts": [
"bbcodepaste.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"content_script.js"
]
}
]
} | |