FA Favs

FA Favs

FA Favs is an open-source extension for Chrome and Firefox that allows you to subscribe to the favorites of FurAffinity users. This…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FA Favs",
  "version": "0.0.3",
  "permissions": [
    "*://*.furaffinity.net/*",
    "storage",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_title": "FA Favs",
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "bg/tab.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+F"
      }
    }
  }
}