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”。
擴展截圖
下載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 |
ID | fpcihhebdldijbieemejafhpblkaoncc |
官方網址 | 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\/*" ] } |