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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載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 FLQL display questions
ID fpcglcmalknekjlefpclncgaofdimmmp
官方網址 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"
            ]
        }
    ]
}