Social Media Monkeyry Dashboard

Social Media Monkeyry Dashboard

Social media dashboard - posting times, suggestions, tips.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appNameShort__",
  "description": "__MSG_appDesc__",
  "version": "1.2",
  "default_locale": "en",
  "author": "Martin Cajzer",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "page_action": {
    "default_title": "__MSG_tooltip__",
    "default_icon": {
      "16": "img/smm-icon_16.png",
      "32": "img/smm-icon_32.png",
      "48": "img/smm-icon_48.png",
      "128": "img/smm-icon_128.png"
    }
  },
  "content_security_policy": "script-src 'self' https://monkeyry.media/; object-src 'self'",
  "icons": {
    "16": "img/smm-icon_16.png",
    "32": "img/smm-icon_32.png",
    "48": "img/smm-icon_48.png",
    "128": "img/smm-icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "dashboard.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "declarativeContent",
    "activeTab",
    "storage",
    "contextMenus",
    "chrome://favicon/"
  ],
  "web_accessible_resources": [
    "img/*.png",
    "script/background.js"
  ],
  "homepage_url": "https://monkeyry.media",
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://monkeyry.media/*"
    ]
  }
}