Remember It

Remember It

The best tool for learning words. Creating flashcards and reviewing words has never been easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.3.5",
  "name": "Remember It",
  "description": "The best tool for learning words. Creating flashcards and reviewing words has never been easier.",
  "icons": {
    "48": "ico_48.png",
    "128": "ico_128.png",
    "256": "ico_256.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "ico_38.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://rmmbrit.com/",
    "https://rmmbrit.com/",
    "https://clients5.google.com/"
  ],
  "background": {
    "scripts": [
      "tabs.js",
      "zepto-1.1.6.js",
      "underscore.js",
      "backbone.js",
      "common.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://rmmbrit.dev/*",
        "*://rmmbrit.com/*",
        "*://mail.google.com/*",
        "*://gmail.com/*"
      ],
      "all_frames": true,
      "css": [
        "content.css"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "popup_build.js",
    "zepto-1.1.6.js",
    "injected.js"
  ]
}