FoxScroller

FoxScroller

Auto scroll web pages with fully adjustable speed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "name": "FoxScroller",
  "version": "1.8",
  "icons": {
    "48": "icons/fs_logo_48.png",
    "64": "icons/fs_logo_64.png",
    "96": "icons/fs_logo_96.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "webNavigation"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/fs_icon_16.png",
      "32": "icons/fs_icon_32.png",
      "64": "icons/fs_icon_64.png"
    },
    "default_title": "FoxScroller",
    "theme_icons": [
      {
        "dark": "icons/fs_icon_16.png",
        "light": "icons/fs_icon_16_light.png",
        "size": 16
      },
      {
        "dark": "icons/fs_icon_32.png",
        "light": "icons/fs_icon_32_light.png",
        "size": 32
      },
      {
        "dark": "icons/fs_icon_64.png",
        "light": "icons/fs_icon_64_light.png",
        "size": 64
      }
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true,
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/cs_scrolling.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{56b215f4-29b6-4898-bf2a-152d8bc189ed}"
    }
  }
}