Add this page to Trello
Add this page to Trello as new task
Что такое Add this page to Trello?
Add this page to Trello - это расширение Chrome, разработанное https://www.muratayusuke.com, и его основная функция - "Add this page to Trello as new task".
Снимки экрана расширения
Скачать файл CRX расширения Add this page to Trello
Скачайте файлы расширений Add this page to Trello в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simple extension for Trello user to add current page to Trello as new task.
Основная информация о расширении
Название | Add this page to Trello |
ID | fjfljghieliggacelkamhfiiejncmjmi |
Официальный URL | https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi |
Описание | Add this page to Trello as new task |
Размер файла | 53.6 KB |
Количество установок | 552 |
Текущая Версия | 0.105 |
Последнее Обновление | 2015-06-06 |
Дата публикации | 2015-06-05 |
Рейтинг | 3.33/5 Всего 3 оценок |
Разработчик | https://www.muratayusuke.com |
Тип оплаты | free |
Поддерживаемые языки | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "0.105", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "jquery-2.1.3.min.js", "main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.3.min.js", "script.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "img\/icon.png", "default_title": "Add this page to Trello", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*\/", "https:\/\/*\/*\/" ] } |