SmartSave — for TradingView

SmartSave — for TradingView

Store, compare and analyse all your TradingView's strategies

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SmartSave — for TradingView",
  "description": "Store, compare and analyse all your TradingView's strategies",
  "version": "1.0.3",
  "icons": {
    "16": "images/smartsave_icon16.png",
    "32": "images/smartsave_icon32.png",
    "48": "images/smartsave_icon48.png",
    "128": "images/smartsave_icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tradingview.com/*"
      ],
      "js": [
        "scripts/external/jquery-3.4.1.min.js",
        "scripts/external/jquery.loadTemplate.min.js",
        "scripts/external/bootstrap.min.js",
        "scripts/external/object-observer.js",
        "scripts/smartsave.min.js",
        "content.js"
      ],
      "css": [
        "styles/external/bootstrap-iso.css",
        "styles/smartSave.css"
      ]
    }
  ],
  "page_action": {
    "default_title": "SmartSave — for TradingView",
    "default_icon": {
      "16": "images/smartsave_icon16.png",
      "32": "images/smartsave_icon32.png",
      "48": "images/smartsave_icon48.png",
      "128": "images/smartsave_icon128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/external/jquery-3.4.1.min.js",
      "scripts/external/object-observer.js",
      "scripts/smartsave.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "scripts/data/*",
    "scripts/templates/*",
    "images/*",
    "styles/external/bootstrap-iso.css",
    "external/jquery-ui/*",
    "external/jquery-ui/images/*",
    "external/jquery-ui/external/*"
  ],
  "permissions": [
    "storage",
    "management",
    "unlimitedStorage",
    "tabs",
    "https://*.tradingview.com/*",
    "https://www.smartsave-extension.com/api/read/*"
  ],
  "content_security_policy": "script-src 'self' https://docs.google.com/forms/* ; object-src 'self'",
  "manifest_version": 2
}