Examine source code of Exibir imagens de links

Inspect and view changes in Exibir imagens de links source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Exibir imagens de links",
  "version": "1.3",
  "description": "Abra uma pasta com lista de links e clique no botão verde para exibir os videos e imagens contidos neles.",
  "permissions": [
    "activeTab",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "show-images-from-image-links.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/showpics16.png",
    "32": "images/showpics32.png",
    "48": "images/showpics48.png",
    "128": "images/showpics128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/showpics16.png",
      "32": "images/showpics32.png",
      "48": "images/showpics48.png",
      "128": "images/showpics128.png"
    },
    "default_popup": "show-images.html"
  },
  "manifest_version": 2
}