FOLO World

Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "author": "Folo World",
  "background": {
    "persistent": true,
    "scripts": [
      "scripts/background_bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "48": "images/48x48.png"
    },
    "default_title": "Folo Bar"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/content_bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "Whenever you shop online at Folo's partner retailers, the Folo Bar will give a little back to your chosen cause.",
  "homepage_url": "https://folo.world/the-folo-bar",
  "icons": {
    "16": "images/16x16.png",
    "18": "images/18x18.png",
    "20": "images/20x20.png",
    "24": "images/24x24.png",
    "32": "images/32x32.png",
    "40": "images/40x40.png",
    "48": "images/48x48.png",
    "96": "images/96x96.png",
    "128": "images/128x128.png"
  },
  "manifest_version": 2,
  "name": "Folo Bar",
  "optional_permissions": [
    "webNavigation"
  ],
  "options_ui": {
    "chrome_style": false,
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "version": "2.0.5",
  "web_accessible_resources": [
    "images/*.png",
    "styles/*.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}