Peegle Remote Controller for Google Chrome™

Peegle Remote Controller for Google Chrome™

Control your tabs and some spesific urls from remote location.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Peegle Remote Controller for Google Chrome™",
  "description": "Control your tabs and some spesific urls from remote location.",
  "version": "0.3.1",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "storage",
    "notifications",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://peegle.com/*"
      ],
      "css": [],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "client.js",
    "icon48.png"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon18.png",
    "default_title": "Peegle Pair"
  },
  "background": {
    "page": "background.html"
  }
}