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
公式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
Eメール [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"
            ]
        }
    ]
}