Dreaming Spanish Toolkit

A chrome extension to interact with the Dreaming Spanish website, enabling new functionalities.

Dreaming Spanish Toolkit란 무엇입니까?

Dreaming Spanish Toolkit은(는) Sam Flax에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to interact with the Dreaming Spanish website, enabling new functionalities."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Dreaming Spanish Toolkit enables the following functionality for the Dreaming Spanish website, enriching your user experience:
- Monthly statistics calculation
- Dark mode, and easily switching between light and dark mode
- More to come (eventually)

Made as a hobby, if you like the extension please consider leaving a review.

UPDATE LOG:

0.1.4
- Minor change to dark mode to improve the look of the monthly progress calendar

0.1.3:
- Updated the dark mode for the new changes to the site HTML

0.1.2:
- Updated the dark mode display to apply to the new dreaming spanish video difficulty feature

0.1.1:
- Fixed some display errors in dark mode
- Moved the monthly stats calculation from the extension to the progress page for ease of use
- Changed the monthly average calculation so that in the current month, a more accurate average is provided. (This could still be a day off depending on what time it is, as the extension uses the local time on your device, which may differ from the DS time by a couple of hours)                    

확장 프로그램 기본 정보

이름 Dreaming Spanish Toolkit Dreaming Spanish Toolkit
ID lponnilepefmohnagjabckdeiobldmhk
공식 URL https://chromewebstore.google.com/detail/dreaming-spanish-toolkit/lponnilepefmohnagjabckdeiobldmhk
설명 A chrome extension to interact with the Dreaming Spanish website, enabling new functionalities.
파일 크기 26.02 KB
설치 횟수 267
현재 버전 0.1.4
최근 업데이트 2023-11-11
출시 날짜 2023-07-08
평점 5.00/5 총 3 개의 평점
개발자 Sam Flax
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/spruce04/Dreaming-Spanish-Toolkit
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dreaming Spanish Toolkit",
    "description": "A chrome extension to interact with the Dreaming Spanish website, enabling new functionalities.",
    "version": "0.1.4",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/icon-16x16.png",
        "32": "\/images\/icon-32x32.png",
        "48": "\/images\/icon-48x48.png",
        "128": "\/images\/icon-128x128.png"
    },
    "background": {
        "service_worker": ".\/src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dreamingspanish.com\/*"
            ],
            "js": [
                ".\/src\/contentScript.js"
            ],
            "css": [
                ".\/src\/dS.css"
            ]
        }
    ],
    "action": {
        "default_popup": ".\/src\/popup.html",
        "default_icon": {
            "16": "\/images\/icon-16x16.png",
            "32": "\/images\/icon-32x32.png",
            "48": "\/images\/icon-48x48.png",
            "128": "\/images\/icon-128x128.png"
        }
    },
    "options_page": ".\/src\/options.html",
    "permissions": [
        "tabs",
        "storage"
    ]
}