Break Down the Walls

Break Down the Walls

Break Down the Walls is an extension to help you access information more easily. If you use Sci-hub and Library Genesis a lot, you will love it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Adds a browser action icon to the toolbar. Click the button to attempt to open link in sci-hub or LibGen.",
  "name": "Break Down the Walls",
  "manifest_version": 2,
  "version": "1.2.7",
  "icons": {
    "48": "graduate-hat.png"
  },
  "background": {
    "scripts": [
      "scihubify.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "graduate-hat.png",
    "default_title": "Break Down Walls"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "activeTab",
    "menus",
    "notifications"
  ],
  "optional_permissions": [
    "menus"
  ],
  "options_ui": {
    "page": "preferences.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    }
  }
}