Progress Bookmark

Progress Bookmark

save progress of articles that has not been read completely

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Progress Bookmark",
  "description": "save progress of articles that has not been read completely",
  "version": "1.1.5",
  "browser_action": {
    "default_icon": "icon48.png",
    "default_popup": "popup.html",
    "default_title": "Progress Bookmark",
    "default_badgetext": "test"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "content_script.js"
      ],
      "css": [
        "mystyle.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}