geturls

geturls

Extension to get URLs of open chrome tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "geturls",
  "description": "Extension to get URLs of open chrome tabs",
  "version": "1.0.0.2",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Get Tab Urls",
    "default_icon": "icon_128.png",
    "default_popup": "index.html"
  }
}