SyncSir

SyncSir

Updatable bookmark, sync your process with one click.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SyncSir",
  "description": "Updatable bookmark, sync your process with one click.",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "version": "1.0.0.2",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "bookmark_content_script.js"
      ]
    }
  ],
  "commands": {
    "add-new-bookmark": {
      "suggested_key": {
        "default": "Ctrl+Shift+I",
        "mac": "Command+Shift+I"
      },
      "description": "Add new bookmark."
    }
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Sync This Page",
    "default_icon": "48.png",
    "default_popup": "popup.html"
  }
}