Device Share

Device Share

Share contents on remote devices remotely through Google chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Device Share",
  "author": "pal inc",
  "version": "3.4",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Share contents on remote devices remotely through Google chrome",
  "homepage_url": "https://pal.co.ke/",
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "*://www.pal.co.ke/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}