Disable Download Bar

Disable Download Bar

Disables annoying the download bar at bottom of Chrome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Disable Download Bar",
  "version": "0.2",
  "description": "Disables annoying the download bar at bottom of Chrome",
  "permissions": [
    "downloads",
    "downloads.shelf"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png",
      "48": "icon48.png"
    },
    "default_title": "Downloads"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3
}