Trace

Find articles you've read in the past

Что такое Trace?

Trace - это расширение Chrome, разработанное http://trace.tools, и его основная функция - "Find articles you've read in the past".

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

screenshot
screenshot
screenshot

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

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

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

                        Features:
🧐 Instantly find articles, essays, and blogs that you've read in the past
🔎 Search by title, publisher, or any words you can remember
📈 Track what you read with detailed analytics                    

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

Название Trace Trace
ID jamgeanaigaadcepnhmdaglegnjfmhkh
Официальный URL https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh
Описание Find articles you've read in the past
Размер файла 4.39 MB
Количество установок 23
Текущая Версия 0.0.1
Последнее Обновление 2020-05-06
Дата публикации 2020-05-04
Разработчик http://trace.tools
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://trace.tools/login
URL страницы политики конфиденциальности https://trace.tools/privacy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trace",
    "version": "0.0.1",
    "permissions": [
        "https:\/\/trace.tools\/*",
        "cookies"
    ],
    "description": "Find articles you've read in the past",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/google.com\/search?*",
                "*:\/\/trace.tools\/*"
            ],
            "js": [
                "readability-master\/Readability.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Trace"
    },
    "icons": {
        "16": "images\/favicon-16px.png",
        "32": "images\/favicon-32px.png",
        "48": "images\/favicon-64px.png",
        "128": "images\/favicon-128px.png"
    }
}