Similar Pages

Similar Pages

Allows you to browse related pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Similar Pages",
  "description": "Allows you to browse related pages.",
  "version": "1.1",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_title": "Show Similar"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "default-options.js",
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "main.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "always-injected.css"
      ],
      "js": [
        "always-injected.js"
      ],
      "run_at": "document_start"
    }
  ],
  "incognito": "split",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}