RedditXplorer

RedditXplorer

RedditXplorer is specially designed for reddit users 1)View external sites without leaving Reddit.2)Automatically expand all Images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RedditXplorer",
  "version": "1.0.2",
  "description": "RedditXplorer is specially designed for reddit users 1)View external sites without leaving Reddit.2)Automatically expand all Images",
  "browser_action": {
    "default_icon": {
      "16": "images/logo16.png",
      "24": "images/logo24.png",
      "32": "images/logo32.png",
      "64": "images/logo64.png",
      "128": "images/logo128.png"
    },
    "default_title": "RedditXplorer by pfrng.com",
    "default_popup": "html/configPopup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.reddit.com/*"
      ],
      "js": [
        "js/csMain.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "https://*.reddit.com/*"
  ]
}