Flashcard Lab: Vocabulary & Language Learning

Flashcard Lab: Vocabulary & Language Learning

Extract vocabulary, text, and definitions straight to Google Sheets to study anything as flashcards while browsing the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Flashcard Lab: Vocabulary & Language Learning",
  "description": "Extract vocabulary, text, and definitions straight to Google Sheets to study anything as flashcards while browsing the web.",
  "version": "3.0.1",
  "action": {
    "default_popup": "index.html",
    "default_title": "Open"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "addingFlashcardScript.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "identity",
    "identity.email",
    "contextMenus"
  ],
  "oauth2": {
    "client_id": "829503028960-292cmse0356koalcpnir5mcmbao7kc86.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/spreadsheets"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyF2JjSF40UubBFdGyhKqBL8TGkFk8WgCTWA7l5BD8IHVi/AIfeIiF7J/dme5cIFuIZL8b2nKnUkN5R4SW1ieOcrpW64Od7iwcuhQQB4XJ0uUu89+706903RFN2Mf3Q058z2vwHGIcUOsAzrh2R0TzUa4e7d+cii+JMh7coEHmycWkO5y/Rp7riT+qsPln3au0VqAdAgVZHMwYQd1aCoM+/P87SMdgLSeeUqhQLQujz7pFSouEr171JCFkwgnbploPZUtHcb2YRl25NYZ1hbMJ2H74i00KafeXgwqYAdE9Y+TQjpy5RDln99cuu4G5m/zVWWoOaQSyC2cpYlqlnnLZwIDAQAB",
  "icons": {
    "16": "icon16x16.png",
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  }
}