Add to TreeDBNotes

Add selection to TreeDBNotes

Что такое Add to TreeDBNotes?

Add to TreeDBNotes - это расширение Chrome, разработанное https://www.mytreedb.com, и его основная функция - "Add selection to TreeDBNotes".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Add to TreeDBNotes

Скачайте файлы расширений Add to TreeDBNotes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to send the selection to the TreeDBNotes. Just select some text from web page and press "Add to TreeDBNotes" from Chrome Right-click menu. TreeDBNotes must be installed on your computer. More info about TreeDBNotes: www.mytreedb.com                    

Основная информация о расширении

Название Add to TreeDBNotes Add to TreeDBNotes
ID pnakebccofiamiglfjhhonnejfomfhka
Официальный URL https://chromewebstore.google.com/detail/add-to-treedbnotes/pnakebccofiamiglfjhhonnejfomfhka
Описание Add selection to TreeDBNotes
Размер файла 9.4 KB
Количество установок 202
Текущая Версия 1.2
Последнее Обновление 2014-01-29
Дата публикации 2014-01-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://www.mytreedb.com
Тип оплаты free
Официальный сайт расширения http://mytreedb.com/view_blog/a-34-treedbnotes_web_grabber_web_clipper_addons.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add to TreeDBNotes",
    "description": "Add selection to TreeDBNotes",
    "homepage_url": "http:\/\/www.mytreedb.com",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*.*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "http:\/\/localhost:1978\/*",
        "tabs",
        "contextMenus"
    ]
}