WebMasterTools: Bulk Outdated Content Removal

WebMasterTools: Bulk Outdated Content Removal

This extension performs Google Webmaster Tools' "remove outdated content" against a list of URLs., so you don't need to enter…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebMasterTools: Bulk Outdated Content Removal",
  "version": "1.8",
  "action": {
    "default_title": "Show the popup",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/red_trash_icon16.png",
    "32": "images/red_trash_icon32.png",
    "48": "images/red_trash_icon48.png",
    "128": "images/red_trash_icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject_script.js"
      ],
      "matches": [
        "https://search.google.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://search.google.com/search-console/remove-outdated-content*"
      ],
      "js": [
        "inject.js",
        "compiled/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "compiled/background.js"
  },
  "permissions": [
    "storage",
    "downloads"
  ],
  "host_permissions": [
    "https://api.gumroad.com/v2/licenses/verify",
    "https://api.lemonsqueezy.com/*"
  ],
  "manifest_version": 3
}