contentbird

contentbird

Connects your contentbird instance with your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "contentbird",
  "version": "0.0.37",
  "manifest_version": 2,
  "description": "Connects your contentbird instance with your browser",
  "icons": {
    "16": "images/contentbird_19_19.png",
    "48": "images/contentbird_48_48.png",
    "128": "images/contentbird_128_128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/vendor.js",
      "scripts/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "webNavigation",
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/contentbird_19_19.png",
      "38": "images/contentbird_38_38.png"
    },
    "default_title": "contentbird"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://*.facebook.com/*"
      ],
      "exclude_globs": [
        "*.jpg",
        "*.jpeg",
        "*.gif",
        "*.png",
        "*.bmp",
        "*.webp",
        "*.css",
        "*.swf",
        "*.js",
        "*.zip",
        "*.rar",
        "*.tar",
        "*.tar.gz",
        "*.tgz",
        "*.tar.bz2",
        "*.tbz2",
        "*.doc",
        "*.docx",
        "*.ppt",
        "*.pptx",
        "*.xls",
        "*.xlsx",
        "*.pdf",
        "*.xml",
        "*.txt",
        "*.mpg",
        "*.mpeg",
        "*.qt",
        "*.mp4",
        "*.m4v",
        "*.m4a",
        "*.mp3",
        "*.ogv",
        "*.ogm",
        "*.ogg",
        "*.oga",
        "*.webm",
        "*.wav",
        "*.",
        "*."
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/vendor.js",
        "scripts/toolbar-frame.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "options.html",
    "frame.html",
    "frame-notloggedin.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}