Capture to a Gif

Capture to a Gif

Record content of pages to an animated gif picture from browser

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": "Gif Recorder",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.2.10",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage",
    "tabCapture"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "windows": "Ctrl+Shift+A",
        "mac": "MacCtrl+Shift+C"
      }
    }
  },
  "icons": {
    "16": "images/Capture-Gif-16x16.png",
    "48": "images/Capture-Gif-48x48.png",
    "128": "images/Capture-Gif-128x128.png"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "images/Capture-Gif.png"
  },
  "background": {
    "scripts": [
      "libs/google-analytics.js",
      "js/background.js"
    ],
    "persistent": true
  }
}