Workplace Readable

Workplace Readable

Chrome extension to make Workplace a bit easier to read

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Workplace Readable",
  "version": "1.7.6",
  "description": "Chrome extension to make Workplace a bit easier to read",
  "icons": {
    "16": "image/icon16.png",
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "image/icon16.png",
      "24": "image/icon24.png",
      "32": "image/icon32.png"
    },
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.facebook.com/*"
      ],
      "exclude_matches": [
        "*://www.facebook.com/*",
        "*://developers.facebook.com/*",
        "*://l.facebook.com/*",
        "*://pixel.facebook.com/*",
        "*://upload.facebook.com/*",
        "*://vupload-edge.facebook.com/*",
        "*://vupload2.facebook.com/*"
      ],
      "js": [
        "js/jquery-2.2.4.min.js",
        "js/content.js",
        "js/expand-all.js",
        "js/read-later.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "image/ic_chevron_right.png",
    "image/ic_chevron_right_hover.png",
    "image/ic_chevron_left.png",
    "image/ic_chevron_left_hover.png",
    "image/ic_play_circle_outline.png",
    "image/ic_play_circle_filled.png",
    "image/ic_format_line_spacing.png",
    "image/ic_bookmark.png",
    "image/ic_bookmark_border.png"
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "homepage_url": "https://github.com/rockwillj/Workplace-Readable",
  "permissions": [
    "*://*.facebook.com/*",
    "storage"
  ]
}