Tab Scroller - Guitar Tab Auto Scroll

Tab Scroller - Guitar Tab Auto Scroll

Auto scroll designed especially for guitar tablature, pdf / text files, sheet music and chords or any website. Full keyboard control

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Scroller - Guitar Tab Auto Scroll",
  "version": "1.0.2.3",
  "description": "Auto scroll designed especially for guitar tablature, pdf / text files, sheet music and chords or any website. Full keyboard control",
  "short_name": "Tab Scroller",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon16.png",
    "default_title": "Tab Scroller",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file://*/*"
      ],
      "js": [
        "js/jquery-3.1.0.min.js",
        "js/commonUtils.es5.min.js",
        "js/contentUtils.es5.min.js",
        "js/jquery.scrollTo.min.js",
        "content.es5.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "bg.es5.min.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "management"
  ],
  "homepage_url": "http://www.tabscroller.com"
}