Scrroll In

Scrroll In

An extension to save scroll position of a webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scrroll In",
  "short_name": "scrroll-in",
  "version": "3.2",
  "description": "An extension to save scroll position of a webpage",
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "options_page": "options/index.html",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png",
      "256": "images/icon-256.png"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "commands": {
    "save-scroll": {
      "suggested_key": {
        "default": "Shift+Ctrl+S",
        "mac": "Shift+Command+S"
      },
      "description": "Save scrroll"
    },
    "fetch-scroll": {
      "suggested_key": {
        "default": "Shift+Ctrl+G",
        "mac": "Shift+Command+G"
      },
      "description": "Fetch Latest scrroll"
    }
  },
  "manifest_version": 3
}