Inspect and view changes in TDK Sözcük Arama source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "TDK Sözcük Arama",
"short_name": "TDK Sözlük",
"version": "1.0.2",
"description": "Seçtiğiniz kelimeyi hızlıca TDK'de aramanızı sağlar. Dil bilgisi, anlam veya yazım denetimi için mükemmel bir olanak sunar.",
"author": {
"name": "Mahir Fatih",
"email": "irtibat@mahirfatih.com",
"url": "https://mahirfatih.com"
},
"homepage_url": "https://mahirfatih.com",
"minimum_chrome_version": "88",
"permissions": [
"activeTab",
"contextMenus"
],
"host_permissions": [
"https://sozluk.gov.tr/*"
],
"background": {
"service_worker": "background_worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
]
}
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"icons/*"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}