Times Bandit

A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.

Что такое Times Bandit?

Times Bandit - это расширение Chrome, разработанное fermentationist, и его основная функция - "A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.".

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

screenshot

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

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

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

                        Times Bandit is a browser extension that removes some of the tracking data that nytimes.com stores in the browser.

Clicking the icon will delete all of the non-HttpOnly cookies stored locally by nytimes.com, clear both local and session storage, and then reload the current url.                    

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

Название Times Bandit Times Bandit
ID kbodloaojjbfdeeoglgapaflcfamgcml
Официальный URL https://chrome.google.com/webstore/detail/times-bandit/kbodloaojjbfdeeoglgapaflcfamgcml
Описание A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.
Размер файла 17.19 KB
Количество установок 37
Текущая Версия 1.0.4
Последнее Обновление 2019-07-13
Дата публикации 2019-07-13
Рейтинг 1.00/5 Всего 1 оценок
Разработчик fermentationist
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Times Bandit",
    "description": "A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.",
    "version": "1.0.4",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "cookies",
        "*:\/\/*.nytimes.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "16": "icon_16.png",
            "48": "icon_48.png",
            "128": "icon_128.png"
        },
        "default_title": "Removes nytimes.com tracking data from browser storage."
    },
    "manifest_version": 2
}