Creative Comments

Creative Comments

Creative Comments - on a bold mission to spice-up the conversation!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Creative Comments",
  "version": "0.0.56",
  "manifest_version": 2,
  "description": "Creative Comments - on a bold mission to spice-up the conversation!",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "background",
    "clipboardRead",
    "clipboardWrite",
    "*://*.facebook.com/*",
    "*://*.twitter.com/*",
    "*://*.hootsuite.com/*",
    "*://*.sumocoders.eu/*",
    "*://*.sumocoders.be/*",
    "*://*.creativecomments.cc/*",
    "*://*.tmc.com/*"
  ],
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://*.twitter.com/*",
        "*://*.hootsuite.com/*",
        "*://*.dev/*",
        "*://*.tmc.com/*",
        "*://*.tmc.sumocoders.eu/*",
        "*://*.sumocoders.be/*",
        "*://*.creativecomments.cc/*"
      ],
      "css": [
        "css/creative_comments.css"
      ],
      "js": [
        "js/jquery.js",
        "js/dropbox.js",
        "js/creative_comments_content.js"
      ],
      "run_at": "document_end"
    }
  ]
}