GX for Google+

GX for Google+

GX for Google+ (Classic) brings drag & drop bookmarking of posts, on-air events, people, and more to your own personal dashboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GX for Google+",
  "description": "GX for Google+ (Classic) brings drag & drop bookmarking of posts, on-air events, people, and more to your own personal dashboard.",
  "version": "1.0.5",
  "content_scripts": [
    {
      "matches": [
        "https://plus.google.com/*",
        "http://plus.google.com/*"
      ],
      "js": [
        "vendor/jquery-2.1.4.min.js",
        "globals/dictionaries.js",
        "globals/errors.js",
        "content/globalHelpers.js",
        "content/classes.js",
        "content/constants.js",
        "content/parsers.js",
        "content/savingElementUX.js",
        "content/dragDrop.js",
        "content/onboarding.js",
        "content/setup.js"
      ],
      "css": [
        "views/content.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "vendor/jquery-2.1.4.min.js",
      "globals/dictionaries.js",
      "globals/errors.js",
      "background/background-api.js",
      "background/background-init.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "popup/login.html",
    "default_title": "GX for Google+"
  },
  "web_accessible_resources": [
    "views/*.html",
    "images/*.png",
    "images/*.gif",
    "images/*.jpg",
    "fonts/roboto/*.ttf"
  ],
  "icons": {
    "16": "images/gxbar_icon_16.png",
    "48": "images/gxbar_icon_48.png",
    "128": "images/gxbar_icon_128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "http://gplusnow.com/*"
  ]
}