Google Search Console Date Selector

Google Search Console Date Selector

Easily compare periods in Google Search Console and generate the percentage changes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Google Search Console Date Selector",
  "version": "1",
  "description": "Easily compare periods in Google Search Console and generate the percentage changes.",
  "manifest_version": 3,
  "icons": {
    "16": "favicon16.png",
    "32": "favicon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://*.search.google.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "favicon16.png",
      "32": "favicon32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.search.google.com/*"
      ],
      "js": [
        "popup.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "statistieken.js"
    ]
  }
}