iLaunch: Manage Bookmark,History,Tab and More

iLaunch: Manage Bookmark,History,Tab and More

Manage bookmark, history, tab, extension & Quick command launch tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_default_title__",
  "version": "1.3.1",
  "description": "__MSG_description__",
  "default_locale": "en",
  "background": {
    "service_worker": "./background.js"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": "assets/logo/logo_x48.png"
  },
  "icons": {
    "16": "assets/logo/logo_x16.png",
    "48": "assets/logo/logo_x48.png",
    "128": "assets/logo/logo_x128.png"
  },
  "commands": {
    "open-tabsearch": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "MacCtrl+Q"
      },
      "description": "Open command menu"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "bookmarks",
    "browsingData",
    "history",
    "scripting",
    "search",
    "storage",
    "management",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://www.googleapis.com/*",
    "https://gstatic.com/*",
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.html",
        "search/search.html",
        "assets/*",
        "popup.css",
        "popup.js",
        "extension/extension.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}