Open folder path

Open folder path

This extension provides the ability to open folder paths on the PC for Atlassian Confluence.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Open folder path",
  "description": "Open folder paths that are requested by confluence open folder plug-in",
  "version": "1.2",
  "icons": {
    "16": "icons/folderButton-16.png",
    "48": "icons/folderButton-48.png",
    "128": "icons/folderButton-128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "50.0"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "50.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "nativeMessaging"
  ]
}