Page Home

Page Home

Прокрутка страницы вначало

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.3",
  "icons": {
    "128": "128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "128.png"
  },
  "content_scripts": [
    {
      "css": [
        "mystyles.css"
      ],
      "exclude_globs": [
        "*vk.*"
      ],
      "js": [
        "jquery.js",
        "functions.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Прокрутка страницы вначало",
  "name": "Page Home",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "arrow_up.png"
  ]
}