GNOME Shell integration

GNOME Shell integration

This extension provides integration with GNOME Shell and the corresponding extensions repository https://extensions.gnome.org

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_gs_chrome__",
  "short_name": "GS Chrome",
  "description": "__MSG_manifest_description__",
  "version": "11.1",
  "default_locale": "en",
  "author": "Yuri Konotopov <[email protected]>",
  "icons": {
    "16": "icons/GnomeLogo-16.png",
    "48": "icons/GnomeLogo-48.png",
    "128": "icons/GnomeLogo-128.png"
  },
  "background": {
    "page": "extension.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/GnomeLogo-16.png",
      "32": "icons/GnomeLogo-32.png"
    },
    "default_title": "__MSG_open_website__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensions.gnome.org/*"
      ],
      "run_at": "document_start",
      "js": [
        "include/constants.js",
        "include/compat-content-script.js",
        "content-script-start.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://extensions.gnome.org/*"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "alarms",
    "nativeMessaging",
    "notifications",
    "storage",
    "tabs",
    "https://extensions.gnome.org/"
  ],
  "optional_permissions": [
    "idle"
  ],
  "web_accessible_resources": [
    "include/sweettooth-api.js"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "56.0"
    }
  }
}