GoodData Extension Tool

GoodData Extension Tool

Makes your life easier when developing in GoodData Cloud BI platform

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GoodData Extension Tool",
  "version": "1.03",
  "version_name": "1.03",
  "icons": {
    "128": "images/extension/gdlogo128.png",
    "192": "images/extension/gdlogo192.png"
  },
  "description": "Makes your life easier when developing in GoodData Cloud BI platform",
  "options_page": "options.html",
  "background": {
    "service_worker": "GDextension.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icons/gd19_2022_rebrand_gray.png",
      "38": "images/icons/retina/gd19_2022_rebrand_gray.png"
    },
    "default_title": "GoodData - Analytics everywhere.",
    "default_popup": "gdpopup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "gd_content_script.js"
      ],
      "css": [
        "gd_content.css"
      ]
    },
    {
      "matches": [
        "https://*/gdc/projects/*/log*"
      ],
      "js": [
        "gd_cc_log_script.js",
        "cc_log_switching.js"
      ],
      "css": [
        "gd_cc_log.css"
      ]
    },
    {
      "matches": [
        "https://*/gdc/md/*/obj/*",
        "https://*/gdc/md/*/usedby2/*",
        "https://*/gdc/md/*/using2/*"
      ],
      "js": [
        "identifiers.js"
      ]
    },
    {
      "matches": [
        "https://*/dashboards/*"
      ],
      "js": [
        "gd_content_script_kpi.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "optional_permissions": [
    "tabs",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "https://secure.gooddata.com/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "cc_log_switching.js",
        "identifiers_inject.js",
        "used_switching.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "manifest_version": 3
}