SuperSub

Type Superscripts, Subscripts, and Other Scientific and Mathematical Symbols Directly Into Google Forms and Google Sheets

什么是SuperSub?

SuperSub是由Hyoun Park开发的Chrome扩展程序,该扩展的主要功能是“Type Superscripts, Subscripts, and Other Scientific and Mathematical Symbols Directly Into Google Forms and Google Sheets”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载SuperSub扩展crx文件

下载SuperSub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        No need to copy and paste from other sources!

For Superscript: type ^ before the character you want.
For Subscript: type _ before the character you want.
For Science or Math symbol: type \ then the character you want.
For Accent or other symbols: type ` then the accent or character you want.

To toggle Superscripts: press ctrl and the . key. 
To toggle Subscripts: press ctrl and the , key.

This extension applies only to Google Forms and Google Sheets. 

More Details:

For most fonts these Unicode glyphs for super and sub scripts are actually the numerators and denominators for diagonal fractions and so they may not look exactly the same as the equivalent markup.  

There are super and sub scripts for all numerical digits. However, there are some super and sub Latin letters that have not yet been encoded by the Consortium, particularly for subscripts. In those cases a message will be displayed on the screen and the original typed character will appear instead. 

Once installed, click on the SuperSub Extension Icon (top right corner of Chrome) to see the list of characters that have already been encoded and the required key to type.  I will of course update this list as soon as we get more super and sub glyphs encoded by the Consortium. 

For the science and math symbols, I chose those that are, from my experience, the most commonly used in high school science and math and I tried to match the Greek letters to the closest corresponding Latin equivalents whenever I could. 

For the overhead vector symbol, the vector symbol needs to be typed first and then the letter for the base. Placing a space before the overhead vector symbol may be necessary in some cases. 

For accents above the letter: 
1. the letter needs to typed first,
2. then press the ` key (usually found at the top left corner of  QWERTY keyboards),
3. and then press the key corresponding to the accent that you want. 

Here are the keys for some of the most common accents:
`1 for acute
`2 for grave
`3 for circumflex
`4 for macron
`5 for tilde
`6 for breve
`7 for hacek
`8 for diaeresis or umlaut
`9 for dot above
`0 for ring above

There are other keys that will also trigger these accents. Click on the SuperSub Extension Icon for the full list of accents and some other international symbols.

In situations where you want ^ or _ or \ or ` to appear in the text just press the key twice.

Short Bio:

Hi, my name is Hyoun Park and I'm a high school teacher and developer living just north of Toronto in Canada.  I built this extension primarily for teachers and students. These days the need for simpler, more effective time-saving tools is an even greater imperative. I am also an associate member of the teachassist foundation.                    

扩展基本信息

名称 SuperSub SuperSub
ID fpcihhebdldijbieemejafhpblkaoncc
官方URL https://chromewebstore.google.com/detail/supersub/fpcihhebdldijbieemejafhpblkaoncc
简介 Type Superscripts, Subscripts, and Other Scientific and Mathematical Symbols Directly Into Google Forms and Google Sheets
文件大小 15.37 KB
安装次数 7,000
当前版本 0.51
更新时间 2022-09-06
上架时间 2020-09-29
评分 4.33/5 共24次评分
开发者 Hyoun Park
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperSub",
    "description": "Type Superscripts, Subscripts, and Other Scientific and Mathematical Symbols Directly Into Google Forms and Google Sheets",
    "version": "0.51",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/forms\/*",
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "glyphs.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/docs.google.com\/forms\/*",
        "https:\/\/docs.google.com\/spreadsheets\/*"
    ]
}