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文件

下載Dreaming Spanish Toolkit擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}