Times Bandit

A browser extension that temporarily clears some of the tracking data that nytimes.com stores in the browser.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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
}