FLQL display questions
Get the .tsv file in the right format and load before starting a game.
什么是FLQL display questions?
FLQL display questions是由harishkrishna开发的Chrome扩展程序,该扩展的主要功能是“Get the .tsv file in the right format and load before starting a game.”。
扩展截图
下载FLQL display questions扩展crx文件
下载FLQL display questions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
I wrote this chrome extension rather hastily as a way of reducing effort and errors for a small group of friends when they copy-pasted question texts from a PDF while reading games on Zoom for season 1 of FLQL. I'm delighted that this plugin has found acceptance among a much larger crowd around the world since. If you have ideas for any features I can include, or if you see any bugs, or perhaps a better name for this plugin, please send them across to [email protected] Some updates in this version: 1) Now supports an easy way to include one image per question. Look at the .tsv format here https://docs.google.com/spreadsheets/d/1mj0rD0yKsQo2cOoO9hZhntEknjpTzXf51RVI4QicHdI/edit#gid=0 Image URLs almost always end with '.jpg' or '.png'. You can upload to a site like imgur to get these links for images that you're not directly taking from the internet. Large images are downscaled so that their longest dimension is 680 pixels. 2) markdown for text emphasis and images. Look here for a quick guide https://www.markdownguide.org/basic-syntax/#emphasis . This is useful if you want to embolden a part of the text ( **text to appear in bold** ), or italicise part of the text ( *text to emphasise* ). Because underscores are used to represent blanks, underscores are taken literally and not parsed for both emphasis and underlines. Asterisks in the middle of a word are parsed as literal asterisks. This feature is untested for horizontal lines, tables, lists, headings, and code blocks. If you know what you are doing, you can have raw HTML instead of markdown. It might help when you want more images per question, control over the size of images, or change colour of text. 3) A button to display answers. The answer text can support markdown as well (and thus images). This button must be continuously pressed for 1 second to prevent accidental clicks. If you do not want readers to show answers, leave the answerText column in the google sheet blank when creating the tsv. Features I will explore: 1) a mozilla extension 2) a way to link audio and video 3) text2speech 4) ??? (email [email protected]) I would recommend using google sheets to create the .tsv file to remove UTF-8 conversion artifacts. Thanks for trying this out! ------------------------------------------------------------------------------------------------------------------------------------------ Instructions: 1) Open the scorecard link 2) Click on the extension icon in the chrome extensions bar (near the address bar at the top usually). You might need to click on the jigsaw piece icon if you can't find it there already. 3) In the tiny popup that opens, upload the questions file as a tsv or txt, and click on load questions. 4) In about a second you should see a message in the start settings page saying "loaded questions". You can now press start. If you do not see this message, refresh the page and try again. If the extension behaves unexpectedly, refresh the page at any point during the quiz and see if it works now. The scores will be preserved. If you are on an incognito window, you must allow the plugin in incognito (right click extension icon, manage extension). If this does not work, reach out to whoever shared the .tsv file and [email protected] The chrome extension only modifies the views on the user's browser. No question data is sent to any server and the extension is automatically disabled by Google on any site that's not the Wikiquiz scorecard. The extension undergoes thorough review for security and privacy You need to have a recent version of Google Chrome for this to work.
扩展基本信息
名称 | FLQL display questions |
ID | fpcglcmalknekjlefpclncgaofdimmmp |
官方URL | https://chromewebstore.google.com/detail/flql-display-questions/fpcglcmalknekjlefpclncgaofdimmmp |
简介 | Get the .tsv file in the right format and load before starting a game. |
文件大小 | 115 KB |
安装次数 | 1,489 |
当前版本 | 1.5721 |
更新时间 | 2022-04-18 |
上架时间 | 2021-08-25 |
评分 | 5.00/5 共8次评分 |
开发者 | harishkrishna |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/harishkrishnav/FLQL-show-questions |
帮助页面URL | https://github.com/harishkrishnav/FLQL-show-questions |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FLQL display questions", "description": "Get the .tsv file in the right format and load before starting a game.", "version": "1.5721", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting", "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/flql16.png", "32": "\/images\/flql32.png", "48": "\/images\/flql48.png", "128": "\/images\/flql128.png" } }, "icons": { "16": "\/images\/flql16.png", "32": "\/images\/flql32.png", "48": "\/images\/flql48.png", "128": "\/images\/flql128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.wikiquiz.org\/Quiz_Scorer_App*" ], "js": [ "showQuestions.js" ] } ] } |