SearchKibble - feed dogs with every search

SearchKibble - feed dogs with every search

SearchKibble feeds shelter pets with every search - for free!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SearchKibble - feed dogs with every search",
  "description": "SearchKibble feeds shelter pets with every search - for free!",
  "homepage_url": "https://www.searchkibble.com",
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://www.searchkibble.com/favicon.ico",
      "is_default": true,
      "keyword": "searchkibble",
      "name": "SearchKibble",
      "search_url": "https://www.searchkibble.com/search?term={searchTerms}"
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "favicon-16.png",
      "48": "favicon-48.png",
      "96": "favicon-96.png",
      "128": "favicon-128.png"
    },
    "default_title": "SearchKibble 2 - feed dogs with every search"
  },
  "icons": {
    "16": "favicon-16.png",
    "48": "favicon-48.png",
    "96": "favicon-96.png",
    "128": "favicon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.searchkibble.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "chrome://favicon/",
    "cookies",
    "*://*.searchkibble.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.searchkibble.com/*"
    ]
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://google-analytics.com; object-src 'self'",
  "manifest_version": 2,
  "version": "1.6.1"
}