Dreaming Spanish Insights

Cool features and options for customizing your learning experience with Dreaming Spanish.

Dreaming Spanish Insights란 무엇입니까?

Dreaming Spanish Insights은(는) spanishramblings에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cool features and options for customizing your learning experience with Dreaming Spanish."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Dreaming Spanish Insights 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Several enhancements to the Dreaming Spanish website to make your experience better and give you greater visibility into your personal language learning journey.

* Insights chart on the Progress page so you can see which guides, Spanish dialects, difficulty levels, and types of comprehensible input you consume each month.

* See video difficulty scores all the time, on every page.

* Shows you the total time of the videos on the Watch page, based on the filters you select.

* Adds publication dates to videos and when each video was added to your personal playlist.

* Improve the auto-play behavior: play videos with no delay and automatically stop when your daily goal is reach.

You have total control. You can turn on or turn off each of these improvements individually using the extension's menu.

This extension does not gather or store any of your personal data. It does not interact with any website other than dreamingspanish.com. All of the enhancements it provides happen in your local browser only and don't affect your Dreaming Spanish account.

Some technical details--

There is a limit to what can be shown about your video watching history because of what Dreaming Spanish records and doesn't record about the videos you watch. In particular, if you watch a video more than once, the extension only has information about the most recent time. Also, if you skip forward or backward while watching a video, the extension's best estimate of the amount of time you watched can be incorrect. There's not much the extension can do to fix this; the necessary data simply isn't recorded anywhere.

When in doubt, trust the watch time from Dreaming Spanish. It's totals are correct, even if the details in the Insights chart are sometimes off a little.

I hope you enjoy the extra insights, but remember that the important thing is to watch a ton of content and enjoy the process!

Updates--

1.1.0, February 5, 2024:
- Removed total watch time from browse page -- this is done by Dreaming Spanish now.
- Removed workaround for full screen bug when using auto play -- this is done by Dreaming Spanish now.
- Updated to support the new Library page and sub-pages for difficulty scores and dates that videos were added to My List.
- Added a temporary fix for the auto play bug that plays the last video in the list instead of the next video in the list.
1.0.1, January 15, 2024:
- Fixed the problem when videos that don't exist anymore caused the Level, Dialect, and Guide graphs to fail.                    

확장 프로그램 기본 정보

이름 Dreaming Spanish Insights Dreaming Spanish Insights
ID oikmhacpdadofheonmbgkmflndnipofh
공식 URL https://chromewebstore.google.com/detail/dreaming-spanish-insights/oikmhacpdadofheonmbgkmflndnipofh
설명 Cool features and options for customizing your learning experience with Dreaming Spanish.
파일 크기 43.19 KB
설치 횟수 216
현재 버전 1.1.0
최근 업데이트 2024-02-06
출시 날짜 2024-01-09
개발자 spanishramblings
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dreaming Spanish Insights",
    "version": "1.1.0",
    "description": "Cool features and options for customizing your learning experience with Dreaming Spanish.",
    "permissions": [
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.dreamingspanish.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dreamingspanish.com\/*",
                "*:\/\/*.dreamingspanish.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "injected.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js",
                "strings_en.dat"
            ],
            "matches": [
                "*:\/\/dreamingspanish.com\/*",
                "*:\/\/*.dreamingspanish.com\/*"
            ]
        }
    ]
}