Dreaming Spanish Toolkit

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

Dreaming Spanish Toolkit là gì?

Dreaming Spanish Toolkit là một tiện ích mở rộng Chrome được phát triển bởi Sam Flax, và tính năng chính của nó là "A chrome extension to interact with the Dreaming Spanish website, enabling new functionalities.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dreaming Spanish Toolkit

Tải xuống các tệp mở rộng Dreaming Spanish Toolkit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dreaming Spanish Toolkit Dreaming Spanish Toolkit
ID lponnilepefmohnagjabckdeiobldmhk
URL Chính Thức https://chromewebstore.google.com/detail/dreaming-spanish-toolkit/lponnilepefmohnagjabckdeiobldmhk
Mô tả A chrome extension to interact with the Dreaming Spanish website, enabling new functionalities.
Kích Thước Tệp 26.02 KB
Số Lần Cài Đặt 267
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2023-11-11
Ngày Phát Hành 2023-07-08
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Sam Flax
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/spruce04/Dreaming-Spanish-Toolkit
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}