Confluence Pagetree Search

Confluence Pagetree Search

Add a feature to search page tree by its name.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Confluence Pagetree Search",
  "version": "2.0.3",
  "description": "Add a feature to search page tree by its name.",
  "author": "kissy0601",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "index.bundle.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "commands": {
    "_execute_page_action": {
      "description": "拡張機能を有効にします"
    }
  }
}