Duolingo Solution Viewer

Provides access to the lists of solutions for Duolingo's translation / listening challenges, and restores the correction of typos.

Duolingo Solution Viewerとは何ですか?

Duolingo Solution Viewerはblmageによって開発されたChromeの拡張機能で、その主な機能は「Provides access to the lists of solutions for Duolingo's translation / listening challenges, and restores the correction of typos.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Duolingo Solution Viewer拡張機能のCRXファイルをダウンロード

Duolingo Solution Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        For more detailed information, screenshots, or if you have any support request, visit the 
development page of the extension here.. : 
https://github.com/blmage/duolingo-solution-viewer
.. or the (new) Discord server: 
https://discord.gg/ZCTB5BPctK

[Features]

- Provides a link to the list of solutions of the current challenge, once you have submitted your answer.
- By default, the solutions are sorted by their similarity with your answer, but you can also switch to an alphabetical sort.
- Click on your answer to edit it. The similarity scores of the solutions will be refreshed accordingly.
- Click on the thumbtack button to pin your reference answer, and easily compare it with all the solutions.
- Filter the solutions by entering one or more words in the filter input (click on the icons on the left of a filter to refine it).
- Select a word (or just a part of it) in any solution to quickly add a new filter.
- Remembers the lists of solutions of each challenge, to also make them available from the corresponding forum discussions.
- Displays the closest solution when the answer you submitted is incorrect.
- Outlines typos in answers to listening challenges.
- Strives to blend seamlessly in Duolingo's UI, and to be compatible with custom themes such as Darklingo++.

[Keyboard shortcuts]

After having submitted an answer to a challenge, use:
- [ s ] to open the solution window, and [ Esc ] to close it,
- [ r ] to open the report window,
- [ d ] to open the forum discussion in a new tab.

When a list of solutions is available, use:
- [ f ] to focus the filter input, and [ Esc ] to leave it,
- [ ↑ ] / [ ↓ ] to scroll up / down the list,
- [ ← ] / [ → ] to navigate through the pages one by one,
- [ Ctrl ] + [ ← ] / [ → ] to go directly to the first / last page.

When the filter input is focused:
- enter a word then use [ Enter ] to add a filter (see the filter shortcuts below),
- use [ Backspace ] to remove the last added filter,
- .. and suggestions are available:
  - use [ ↑ ] / [ ↓ ] to  select a suggestion,
  - use [ Enter ] to add a filter based on the selected suggestion (shortcuts will be preserved).

[Filter shortcuts]

For most languages, enter:

- " word " for solutions that include the exact word,
- " *example " for solutions that include a word ending with "example",
- " example* " for solutions that include a word beginning with "example",
- " *example* " for solutions that include a word containing "example",
- " -word " for solutions that do not include the exact word (wildcard variants above are also available).

For languages that do not use space-separated words (such as Japanese), enter:

- " word " for solutions that include the word anywhere,
- " *example " for solutions ending with "example",
- " example* " for solutions beginning with "example",
- " =example " for exact solutions,
- " -word " for solutions that do not include the word (again, all variants above are available).

[Limitations]

- The lists of solutions are built by flattening the original solution graphs, which are not optimized against redundancies. This can lead to lists of solutions containing lots of very similar sentences.
- "Fill in the blank" challenges are based on "normal" translation challenges. The lists of solutions provided for them may therefore include sentences that do not match the blanks.

[License]

MIT (see https://github.com/blmage/duolingo-solution-viewer/blob/master/LICENSE)

Duolingo is a registered trademark of Duolingo, Inc. This extension is not affiliated with Duolingo in any way.                    

拡張機能の基本情報

名前 Duolingo Solution Viewer Duolingo Solution Viewer
ID idffaipgnlkhfhibgnodeiogpgojcmfm
公式URL https://chromewebstore.google.com/detail/duolingo-solution-viewer/idffaipgnlkhfhibgnodeiogpgojcmfm
説明 Provides access to the lists of solutions for Duolingo's translation / listening challenges, and restores the correction of typos.
ファイルサイズ 119 KB
インストール数 4,350
現在のバージョン 4.17.1
最終更新日 2023-11-21
公開日 2020-07-01
評価 3.92/5 合計 36 レビュー
開発者 blmage
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/blmage/duolingo-solution-viewer
ヘルプページのURL https://github.com/blmage/duolingo-solution-viewer/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duolingo Solution Viewer",
    "version": "4.17.1",
    "description": "Provides access to the lists of solutions for Duolingo's translation \/ listening challenges, and restores the correction of typos.",
    "permissions": [
        "https:\/\/*.duolingo.com\/"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "assets\/css\/ui.css",
        "src\/observer.js",
        "src\/ui.js"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png"
    },
    "manifest_version": 2
}