scroll to top bottom button

Scroller Adds scroll to Top and Bottom buttons on all sites [ https://newsjunky.in ]
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Scroller",
  "short_name": "Scroller Scroll buttons",
  "version": "1.0.1resigned1",
  "description": "Scroller Adds scroll to Top and Bottom buttons on all sites",
  "icons": {
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "options/options-storage.js",
        "content/buttons.js",
        "content/rules-applier.js"
      ],
      "css": [
        "content/buttons.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/arrow-up.svg",
    "img/arrow-dn.svg"
  ],
  "background": {
    "scripts": [
      "content/rules-loader.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{419a54f8-aec2-4544-b2d9-c91679ab686c}"
    }
  }
}