SelectGIF

SelectGIF

Select a word and get Gif Image :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SelectGIF",
  "description": "Select a word and get Gif Image :)",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "*://*/*"
  ],
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_popup": "pop.html",
    "default_title": "SelectGIF"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.8.3.min.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "version": "4.0",
  "manifest_version": 2
}