My Reddit Companion

My Reddit Companion

My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My Reddit Companion",
  "version": "3.4.3",
  "manifest_version": 2,
  "description": "My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions.",
  "homepage_url": "https://github.com/alex2005git/my-reddit-companion",
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "notifications",
    "<all_urls>"
  ],
  "icons": {
    "16": "images/reddit-16.png",
    "24": "images/reddit-24.png",
    "32": "images/reddit-32.png",
    "48": "images/reddit-48.png",
    "64": "images/reddit-64.png",
    "96": "images/reddit-96.png",
    "128": "images/reddit-128.png"
  },
  "background": {
    "page": "html/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "libs/jquery.js",
        "js/debug.js",
        "js/utils.js",
        "js/options.js",
        "js/content_reddit.js",
        "js/content_overlay.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "css/content_overlay.css",
    "html/content_bar.html"
  ],
  "options_ui": {
    "page": "html/options.html"
  },
  "browser_action": {
    "default_title": "Submit to Reddit",
    "default_icon": {
      "16": "images/reddit-16.png",
      "24": "images/reddit-24.png",
      "32": "images/reddit-32.png",
      "48": "images/reddit-48.png"
    }
  }
}