FLQL display questions

Get the .tsv file in the right format and load before starting a game.

Cos'è FLQL display questions?

FLQL display questions è un'estensione di Chrome sviluppata da harishkrishna, e la sua funzione principale è "Get the .tsv file in the right format and load before starting a game.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione FLQL display questions

Scarica i file di estensione FLQL display questions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FLQL display questions FLQL display questions
ID fpcglcmalknekjlefpclncgaofdimmmp
URL Ufficiale https://chromewebstore.google.com/detail/flql-display-questions/fpcglcmalknekjlefpclncgaofdimmmp
Descrizione Get the .tsv file in the right format and load before starting a game.
Dimensione del File 115 KB
Conteggio Installazioni 1,489
Versione Corrente 1.5721
Ultimo Aggiornamento 2022-04-18
Data di Pubblicazione 2021-08-25
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore harishkrishna
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/harishkrishnav/FLQL-show-questions
URL della Pagina di Aiuto https://github.com/harishkrishnav/FLQL-show-questions
Lingue Supportate 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"
            ]
        }
    ]
}