Quick Quotes

Select and save quotes from the internet as well as a link to them.

Что такое Quick Quotes?

Quick Quotes - это расширение Chrome, разработанное Unknown, и его основная функция - "Select and save quotes from the internet as well as a link to them.".

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

screenshot
screenshot

Скачать файл CRX расширения Quick Quotes

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

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

                        Save and link to quotes on the internet you want to keep.

Just select text on any webpage and right-click it and choose "Save as Quick Quote". Click on the Quick Quotes extension button next to the Chrome browser bar to see all your saved quotes and go to their original locations on the internet.                    

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

Название Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
Официальный URL https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Описание Select and save quotes from the internet as well as a link to them.
Размер файла 7.31 KB
Количество установок 137
Текущая Версия 1.0
Последнее Обновление 2015-12-12
Дата публикации 2015-12-11
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Quotes",
    "description": "Select and save quotes from the internet as well as a link to them.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "findQuote.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "tabs",
        ""
    ]
}