videoresumer

videoresumer: automatically resumes videos
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "video resumer",
  "manifest_version": 2,
  "name": "video resumer",
  "version": "1.0.3",
  "homepage_url": "https://github.com/divinity76/video-resumer",
  "icons": {
    "48": "icons/page-48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/page-32.png"
  },
  "browser_specific_settings": {
    "gecko_android": {},
    "gecko": {
      "id": "{d18b5cd5-1b7f-4ca3-8df8-9bb9dd299472}"
    }
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "resumer.js"
      ]
    }
  ]
}