Tab & Bookmark Finder

Tab & Bookmark Finder

You can simply switch between tabs and find bookmark using shortcut key!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab & Bookmark Finder",
  "description": "You can simply switch between tabs and find bookmark using shortcut key!",
  "version": "1.2.0",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png"
  },
  "background": {
    "scripts": [
      "public/background.js"
    ],
    "persistent": true
  },
  "commands": {
    "show-finder": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "windows": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Show the finder"
    }
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}