ShowAsIs

ShowAsIs

Google Slide has CJK font issue; What You See Is NOT What You Get in presentation mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ShowAsIs",
  "description": "Google Slide has CJK font issue; What You See Is NOT What You Get in presentation mode.",
  "version": "1.1.3",
  "icons": {
    "16": "images/show_16.png",
    "48": "images/show_48.png",
    "128": "images/show_128.png"
  },
  "browser_action": {
    "default_icon": "show.png",
    "default_title": "Shows the fonts as is for CJK in Google Slide presentation mode.\n* Turn off spelling suggestion under View of Google Slide.\n* Turn off fullscreen toolbar under View of Chrome.\n* Click 'Show As Is' button in Slide or extension icon, voila~"
  },
  "background": {
    "scripts": [
      "showExt.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/presentation/*"
      ],
      "js": [
        "show.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "show.png"
  ],
  "permissions": [
    "activeTab",
    "tabs"
  ]
}