Quotemark

Save quotes from all over the web!

Что такое Quotemark?

Quotemark - это расширение Chrome, разработанное Unknown, и его основная функция - "Save quotes from all over the web!".

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

screenshot
screenshot

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

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

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

                        Quotemark lets you save quotes from the internet and bookmark them. A list of quotes is saved in the extension's popup. Clicking on the quote, brings you back to the original web-page, where the quote is highlighted and in focus.                    

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

Название Quotemark Quotemark
ID klgfbfafpkfkchoeemoeicggojkdgecl
Официальный URL https://chromewebstore.google.com/detail/quotemark/klgfbfafpkfkchoeemoeicggojkdgecl
Описание Save quotes from all over the web!
Размер файла 20.62 KB
Количество установок 18
Текущая Версия 1.0
Последнее Обновление 2019-11-21
Дата публикации 2019-11-16
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quotemark",
    "version": "1.0",
    "description": "Save quotes from all over the web!",
    "permissions": [
        "tabs",
        "contextMenus",
        "",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "contextmenu.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": ".\/icons\/iconcontrast.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/iconcontrast.png",
        "48": ".\/icons\/iconcontrast.png",
        "128": ".\/icons\/iconcontrast.png"
    },
    "manifest_version": 2
}