Examine source code of PageLiner

Inspect and view changes in PageLiner source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_GLOBAL_APP_NAME__",
  "version": "1.6.5",
  "manifest_version": 2,
  "description": "__MSG_GLOBAL_APP_DESCRIPTION__",
  "icons": {
    "16": "icons/icon_pl_16x16.png",
    "48": "icons/icon_pl_48x48.png",
    "128": "icons/icon_pl_128x128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon_pl_19x19.png",
    "default_title": "__MSG_GLOBAL_APP_NAME__",
    "default_popup": "src/page_action/page_action.html"
  },
  "permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/jquery/jquery-ui.min.js",
        "js/jquery/jquery.ui.touch-punch.min.js",
        "src/inject/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/js/jquery/jquery.min.map"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}