Salvare

Salvare

Salvare - Enhanced Bookmark Manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Salvare",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Salvare - Enhanced Bookmark Manager",
  "homepage_url": "https://github.com/justintieu/salvare",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/metadata.js",
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "options_page": "src/options/index.html",
  "browser_action": {
    "default_icon": "icons/icon128-empty.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ],
  "permissions": [
    "https://*/*",
    "http://*/*",
    "contextMenus",
    "storage",
    "tabs"
  ]
}