One Page

This extension displays news articles split up on multiple pages as a single page.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "One Page",
  "author": "pablotheissen",
  "short_name": "OnePage",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "0.4.1",
  "icons": {
    "128": "assets/logo-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/icon-inactive-16.png",
      "32": "assets/icon-inactive-32.png",
      "128": "assets/icon-inactive-128.png"
    },
    "default_title": "__MSG_report__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.arstechnica.com/*"
      ],
      "js": [
        "websites/arstechnica-com_injector.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.berliner-zeitung.de/*"
      ],
      "js": [
        "websites/berliner-zeitung-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.diply.com/*"
      ],
      "js": [
        "websites/diply-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.faz.net/*"
      ],
      "js": [
        "websites/faz-net.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.forbes.com/*"
      ],
      "js": [
        "websites/forbes-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.golem.de/*"
      ],
      "js": [
        "websites/golem-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.handelsblatt.com/*"
      ],
      "js": [
        "websites/handelsblatt-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.lifebuzz.com/*"
      ],
      "js": [
        "websites/lifebuzz-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.macworld.co.uk/*"
      ],
      "js": [
        "websites/macworld-co-uk.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.netzwelt.de/*"
      ],
      "js": [
        "websites/netzwelt-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.stuttgarter-zeitung.de/*"
      ],
      "js": [
        "websites/stuttgarter-zeitung-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.sueddeutsche.de/*"
      ],
      "js": [
        "websites/sueddeutsche-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.tagesspiegel.de/*"
      ],
      "js": [
        "websites/tagesspiegel-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.thecelebritylane.com/*"
      ],
      "js": [
        "websites/thecelebritylane-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.thephoenix.com/*"
      ],
      "js": [
        "websites/thephoenix-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.trueactivist.com/*"
      ],
      "js": [
        "websites/trueactivist-com.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.wiwo.de/*"
      ],
      "js": [
        "websites/wiwo-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.wr.de/*"
      ],
      "js": [
        "websites/wr-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.zeit.de/*"
      ],
      "js": [
        "websites/zeit-de.js",
        "common.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "websites/arstechnica-com.js"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "-ms-preload": {
    "backgroundScript": "assets/edge/backgroundScriptsAPIBridge.js",
    "contentScript": "assets/edge/contentScriptsAPIBridge.js"
  }
}