Fetlife+

Fetlife+

Various improvements to FetLife's user interface...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "fl+",
  "version": "2.1.2",
  "manifest_version": 2,
  "minimum_chrome_version": "40",
  "homepage_url": "https://chrome.google.com/webstore/detail/fetlife+/damilhebpjeefbhjdhekjeddlkhfefej",
  "author": "Ryc O'Chet <[email protected]>",
  "permissions": [
    "alarms",
    "cookies",
    "notifications",
    "storage",
    "tabs",
    "https://fetlife.com/"
  ],
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "common.js",
        "bookmarks.js",
        "navigation.js",
        "theme.js"
      ],
      "css": [
        "bookmarks.css"
      ],
      "run_at": "document_end",
      "matches": [
        "https://fetlife.com/*"
      ]
    },
    {
      "js": [
        "jquery.color.js",
        "home.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://fetlife.com/home"
      ]
    },
    {
      "js": [
        "users.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://fetlife.com/users/*"
      ]
    },
    {
      "js": [
        "comment.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://fetlife.com/groups/*/group_posts/*",
        "https://fetlife.com/users/*"
      ]
    },
    {
      "js": [
        "event.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://fetlife.com/events/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_icon": "icon48.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "common.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "themes/*.css",
    "google_calendar.png"
  ]
}