Recipe Filter

Recipe Filter

This extension will detect recipes on any page you visit and will highlight them at the top of the page. No more hunting for the actual recipe when you visit a long-winded food blog! Fork of the excellent chrome extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Recipe Filter",
  "short_name": "Recipe Filter",
  "version": "0.4resigned1",
  "developer": {
    "name": "SargeZT",
    "url": "https://reddit.com/u/SargeZT"
  },
  "icons": {
    "128": "img/icon-128.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "browser_action": {
    "default_title": "Recipe Filter",
    "default_icon": "img/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/recipe_filter.css"
      ],
      "js": [
        "js/main.js"
      ]
    }
  ],
  "options_ui": {
    "page": "html/options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{8b2164f4-fdb6-47eb-b692-312cc6d04f6b}"
    }
  }
}