Examine source code of BrainyTab

Inspect and view changes in BrainyTab 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
{
  "manifest_version": 2,
  "name": "BrainyTab",
  "version": "1.0.0",
  "description": "Bookmark manager that makes you smart(er)",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "edge-browser-extension.html"
  },
  "browser_action": {
    "default_icon": "icons/BrainyTab_51.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/BrainyTab_51.png",
    "48": "icons/BrainyTab_51.png",
    "128": "icons/BrainyTab_128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "content_security_policy": "script-src 'self' https://cms.brainytab.com/api/* https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}