Image Finder for Bloggers

Image Finder for Bloggers

Find free stock images for your blog article or website quickly without wasting time searching.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.0.3",
  "name": "Image Finder for Bloggers",
  "description": "Find free stock images for your blog article or website quickly without wasting time searching.",
  "author": "[email protected]",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "16x16.png",
      "32": "32x32.png",
      "48": "48x48.png",
      "128": "128x128.png"
    },
    "default_title": "Image Finder for Bloggers"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "./static/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}