Tagpacker's "Pack It" Button

Tagpacker's "Pack It" Button

Organize bookmarks your way. Faster than ever with the "Pack it" button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "icons": {
    "24": "icon_24.png",
    "36": "icon_36.png",
    "128": "icon_128.png"
  },
  "name": "Tagpacker's \"Pack It\" Button",
  "short_name": "Pack It",
  "description": "Organize bookmarks your way. Faster than ever with the \"Pack it\" button.",
  "version": "1.0.17",
  "browser_action": {
    "default_icon": "icon_36.png",
    "default_title": "Pack it!"
  },
  "background": {
    "scripts": [
      "background-page.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "outer-frame.html"
  ],
  "permissions": [
    "webRequest",
    "contextMenus",
    "activeTab",
    "notifications",
    "tabs",
    "*://*/*"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z",
        "chromeos": "Ctrl+Shift+Z",
        "linux": "Ctrl+Shift+Z",
        "default": "Ctrl+Shift+Z"
      }
    }
  },
  "omnibox": {
    "keyword": "tp"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}