Smartling GDN String Status

Smartling GDN String Status

Allows you to see all of the strings that are currently live on a page when using Smartlings GDN proxy to translate your website.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Smartling GDN String Status",
  "version": "4.3",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js",
        "extensionStyles.css",
        "popup.js"
      ]
    }
  ],
  "action": {
    "default_icon": "smartling.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'; style-src 'self' https://fonts.googleapis.com 'unsafe-inline'; font-src 'self' data: https://fonts.gstatic.com; img-src 'self' data:;"
  },
  "background": {
    "service_worker": "background.js",
    "worker_ui": "popup.html"
  }
}