Chrome Extension - Linkcast

Chrome Extension - Linkcast

Share links, images, blogs and everything on the web with your friends in one click without email using Linkcast.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "Linkcast",
  "name": "Chrome Extension - Linkcast",
  "description": "Share links, images, blogs and everything on the web with your friends in one click without email using Linkcast.",
  "version": "12.6.17",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "public/icons/icon16.png",
    "32": "public/icons/icon32.png",
    "48": "public/icons/icon48.png",
    "128": "public/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "public/icons/notification.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "src/background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "src/content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "notifications"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "public/icons/icon128.png"
  ]
}