ShowAsIs

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

Τι είναι το ShowAsIs;

Το ShowAsIs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον haebin, και η κύρια λειτουργία του είναι "Google Slide has CJK font issue; What You See Is NOT What You Get in presentation mode.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ShowAsIs

Λήψη αρχείων επέκτασης ShowAsIs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Google Slide has CJK font issue; What You See Is NOT What You Get in presentation mode. This extension solves the issue by using the slide editor in presentation mode.

Follow simple 3 steps to experience WYSIWYG for Chinese, Japanese and Korean.
1. Slide settings;
  . Turn off spelling suggestion under View of Google Slide. (one time, but if you want the spell check then turn on when you are done with presentation.)
  . Turn off View > Show ruler, Show speaker notes, Show filmstrip, Show comments
  . Hide Sidebar by clicking the right arrow ' > ' at the bottom of Sidebar.
2. Turn off fullscreen toolbar under View of Chrome. (one time)
3. Click 'Show As Is' button in Google Slide or extension logo, voila~

To go back, ESC (or Command + Control + F on new Mac) to exit fullscreen and click the 'ShowAsIs' extension logo again or refresh the slide.


NOTE: 
 * Animations won't work.
 * If up & down doesn't work, please click the slide page and try it.
 * If comments exist then share the doc in 'View Only' mode and then do 'Show As Is'. This will fix the problem without resolving all the comments.
 * Even though it requires browser history for auto fullscreen feature, it doesn't do anything with browser history. If you can't believe it then here is the code. https://github.com/haebin/ShowAsIs 


* Release Note:
v.1.1.3 - Bugfix for Google Slide UI code update.
v.1.1.2 - Fixed extension not working in Viewer mode.
v.1.1.1 - Icons added.
v.1.1.0 - Added 'Show As Is' button in G Slide and automatic fullscreen.
v.1.0.1 - Minor updates.
v.1.0.0 - Initial version.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ShowAsIs ShowAsIs
ID lehpimiaaocmlkoebjgkokglapbadpdh
Επίσημο URL https://chromewebstore.google.com/detail/showasis/lehpimiaaocmlkoebjgkokglapbadpdh
Περιγραφή Google Slide has CJK font issue; What You See Is NOT What You Get in presentation mode.
Μέγεθος Αρχείου 10.05 KB
Αριθμός Εγκαταστάσεων 4,261
Τρέχουσα Έκδοση 1.1.3
Τελευταία Ενημέρωση 2023-03-02
Ημερομηνία Δημοσίευσης 2019-04-09
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής haebin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
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": {
        "128": "images\/show_128.png",
        "48": "images\/show_48.png",
        "16": "images\/show_16.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"
    ]
}