TDK Türkçe Sözlük

TDK Türkçe Sözlük

TDK Türkçe Sözlük, Türk Dil Kurumu (sozluk.gov.tr) tarafından sağlanan bilgilerle çalışan kullanışlı bir sözlük eklentisidir.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TDK Türkçe Sözlük",
  "version": "0.3",
  "description": "TDK Türkçe Sözlük, Türk Dil Kurumu (sozluk.gov.tr) tarafından sağlanan bilgilerle çalışan kullanışlı bir sözlük eklentisidir.",
  "default_icon": {
    "32": "icons/32.png",
    "48": "icons/48.png"
  },
  "browser_action": {
    "default_icon": "icons/48.png",
    "default_popup": "index.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "mac": "Alt+Space"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://sozluk.gov.tr/*"
      ],
      "js": [
        "js/vue.min.js",
        "js/vue-resource.min.js",
        "js/scripts.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}