URL Incrementer

URL Incrementer

Increment [+] a URL or go to the Next [>] Page; Supports Auto- and Download-Incrementing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "version": "5.8",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "img/icons/dark/16.png",
    "48": "img/icons/dark/48.png",
    "128": "img/icons/dark/128.png"
  },
  "browser_action": {
    "default_title": "__MSG_title__",
    "default_icon": {
      "16": "img/icons/dark/16.png",
      "24": "img/icons/dark/24.png",
      "32": "img/icons/dark/32.png"
    },
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/action.js",
      "js/increment-decrement.js",
      "js/auto.js"
    ],
    "persistent": true
  },
  "commands": {
    "increment": {
      "suggested_key": {
        "default": "Ctrl+Shift+Up"
      },
      "description": "Increment [+]"
    },
    "decrement": {
      "suggested_key": {
        "default": "Ctrl+Shift+Down"
      },
      "description": "Decrement [-]"
    },
    "next": {
      "description": "Next [>]"
    },
    "prev": {
      "description": "Prev [<]"
    },
    "clear": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "Clear [x]"
    },
    "auto": {
      "suggested_key": {
        "default": "Ctrl+Shift+A"
      },
      "description": "Auto Pause / Resume"
    }
  },
  "minimum_chrome_version": "55",
  "optional_permissions": [
    "declarativeContent",
    "downloads",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "short_name": "__MSG_short_name__"
}