Save Code

Save Code

Save, organize & share code snippets that work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save Code",
  "version": "2.0.1.6",
  "description": "Save, organize & share code snippets that work",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js",
      "popup.js",
      "context.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/tcw_16.png",
      "32": "images/tcw_32.png",
      "48": "images/tcw_48.png",
      "128": "images/tcw_128.png"
    }
  },
  "icons": {
    "16": "images/tcw_16.png",
    "32": "images/tcw_32.png",
    "48": "images/tcw_48.png",
    "128": "images/tcw_128.png"
  },
  "web_accessible_resources": [
    "images/saveicon.png",
    "images/expand.png",
    "images/code200.png",
    "images/code400.png",
    "sidebar.html",
    "images/preloader.gif",
    "saveform.html",
    "tutorial.html"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.thiscodeworks.com https://api.thiscodeworks.com https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js https://code.jquery.com/jquery-3.5.1.min.js;  object-src 'self'",
  "manifest_version": 2
}