Social Champ

Social Champ

Post like champions and increase your social media reach by 75%, by smartly repeating your posts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Social Champ",
  "version": "0.3.2",
  "version_name": "0.3.2",
  "description": "Post like champions and increase your social media reach by 75%, by smartly repeating your posts.",
  "icons": {
    "48": "images/icon48.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Social Champ"
  },
  "background": {
    "page": "socialchamp.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "tmpl/*",
    "lib/font-awesome/fonts/*",
    "lib/bootstrap/fonts/*",
    "images/*",
    "fonts/*",
    "iframe/*"
  ],
  "permissions": [
    "identity",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "clipboardWrite"
  ]
}