Save as Gist

Save as Gist

Save notes and webpage information as private gists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save as Gist",
  "version": "0.0.4",
  "description": "Save notes and webpage information as private gists.",
  "permissions": [
    "storage",
    "identity",
    "activeTab",
    "https://api.github.com/*",
    "https://github.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Create new gist",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}