Amazon Is Burning

Amazon Is Burning

Turn your attention to the Amazon that really matters.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon Is Burning",
  "version": "0.1.4",
  "description": "Turn your attention to the Amazon that really matters.",
  "homepage_url": "http://www.jeremiahjohnson.rip",
  "author": "Jeremiah Johnson / Nullsleep",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.com/*"
      ],
      "js": [
        "popup.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "*://*.amazon.com/*",
    "activeTab",
    "tabs",
    "declarativeContent",
    "storage"
  ],
  "web_accessible_resources": [
    "fire.gif"
  ]
}