Sticky Ducky - clean the fixed elements

Sticky Ducky - clean the fixed elements

Automatically cleans pages of the sticky headers and other fixed elements.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Sticky Ducky",
  "author": "Boris Lykah",
  "description": "Automatically cleans pages of the sticky headers and other fixed elements",
  "version": "1.7.2",
  "applications": {
    "gecko": {
      "id": "sticky-ducky@addons.mozilla.org",
      "strict_min_version": "52.0"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "assets/icon48.png"
  },
  "icons": {
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "scripts": [
      "lib/underscore.js",
      "lib/css-what.js",
      "js/vapiBackground.js",
      "js/explorer.js",
      "js/whitelist.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/underscore.js",
        "lib/css-what.js",
        "js/vapiInjected.js",
        "js/explorer.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ]
}