Times Bandit

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

Co to jest Times Bandit?

Times Bandit to rozszerzenie Chrome opracowane przez fermentationist, a jego główną funkcją jest „A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Times Bandit

Pobierz pliki rozszerzeń Times Bandit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Times Bandit Times Bandit
ID kbodloaojjbfdeeoglgapaflcfamgcml
Oficjalny URL https://chrome.google.com/webstore/detail/times-bandit/kbodloaojjbfdeeoglgapaflcfamgcml
Opis A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.
Rozmiar pliku 17.19 KB
Liczba instalacji 37
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2019-07-13
Data Publikacji 2019-07-13
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper fermentationist
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}