SPush SP editor

SPush SP editor

Developer Tools extension to auto save script/css files to SharePoint.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SPush SP editor",
  "short_name": "SPush",
  "author": "Sergey.Shiroky",
  "homepage_url": "http://sintosp.blogspot.com/",
  "version": "1.0.3",
  "description": "Developer Tools extension to auto save script/css files to SharePoint.",
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "devtools_page": "devtools.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "cs.proxy.js"
      ]
    }
  ],
  "icons": {
    "256": "ico.png"
  },
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2
}