Sitemap Generator

Sitemap Generator

Generate sitemaps using Chrome browser. Especially intended for generating sitemaps for dynamic single-page applications (SPAs).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "version": "0.1.7",
  "version_name": "0.1.7",
  "manifest_version": 2,
  "default_locale": "en",
  "incognito": "not_allowed",
  "minimum_chrome_version": "46",
  "homepage_url": "https://chrome.google.com/webstore/detail/hcnjemngcihnhncobgdgkkfkhmleapah",
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "system.display"
  ],
  "content_security_policy": "script-src 'self' 'sha256-rwQFR+Lqw7LzDK8rVQATBE+3CIpTqJlKlhIbusXISKE=' https://www.google-analytics.com; object-src 'self'",
  "optional_permissions": [
    "downloads",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16x16.png",
      "24": "icons/24x24.png",
      "32": "icons/32x32.png"
    },
    "default_title": "__MSG_appShortName__"
  }
}