Drupal Gin Toolbar Extension

Drupal Gin Toolbar Extension

A chromium extension to make drupal gin toolbar to be external on frontend theme

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Drupal Gin Toolbar Extension",
  "version": "0.1",
  "manifest_version": 2,
  "description": "A chromium extension to make drupal gin toolbar to be external on frontend theme",
  "icons": {
    "16": "icons/toolbar-disabled-16x16.png",
    "32": "icons/toolbar-disabled-32x32.png",
    "64": "icons/toolbar-disabled-64x64.png",
    "128": "icons/toolbar-disabled-128x128.png"
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "icons/*.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}