Outline Redirect

Outline Redirect

This extension redirects the current tab to Outline.com, a website that removes paywalls.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Outline Redirect",
  "description": "This extension redirects the current tab to Outline.com, a website that removes paywalls.",
  "version": "1.0.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_title": "Click to be redirected to the Outline of this page."
  },
  "permissions": [
    "tabs"
  ]
}