Examine source code of Image Templates

Inspect and view changes in Image Templates 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": "Image Templates",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "Create images for Facebook Ads, Display Ads, Twitter Ads, Instagram Ads and LinkedIn Ads quickly",
  "permissions": [
    "tabs",
    "storage",
    "alarms"
  ],
  "action": {
    "default_icon": "images/logo32.png",
    "default_title": "Image Templates"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "128": "images/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://app.imagetemplates.com/*",
        "*://app.develop.imagetemplates.com/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "get-xpath.js",
        "inPageContentScript.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://app.imagetemplates.com/*",
        "*://app.develop.imagetemplates.com/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "inAppContentScript.js"
      ],
      "run_at": "document_end"
    }
  ]
}