Custom colors for desmos

Use custom colors and more in Desmos to beautify your graphs

什麼是Custom colors for desmos?

Custom colors for desmos是由ElFisho Dev開發的Chrome擴展程式,該擴展的主要功能是“Use custom colors and more in Desmos to beautify your graphs”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Custom colors for desmos擴展crx文件

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

擴展使用說明

                        This extension allows for several changes to Desmos graphing calculator including:
- change the 9 default Desmos colors to 12 custom colors
- Advanced Styling (add a text outline to labels and/or make them editable)
- Show/hide/create hidden folders

Add any color you want to the menu to make your graphs more informative and colorful!  Please enjoy and feel free to suggest feedback.

v0.0.4 fixed a compromising bug and changed the number of colors from 9 to 12                    

擴展基本資訊

名稱 Custom colors for desmos Custom colors for desmos
ID clcdbeolcdigfefgbhlgghepjfkpdlgi
官方網址 https://chromewebstore.google.com/detail/custom-colors-for-desmos/clcdbeolcdigfefgbhlgghepjfkpdlgi
簡介 Use custom colors and more in Desmos to beautify your graphs
檔案大小 42.99 KB
安裝次數 3,297
目前版本 0.0.4
更新時間 2021-12-08
上架時間 2020-10-18
評分 3.60/5 共 5 次評分
開發者 ElFisho Dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.desmos.com/calculator
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom colors for desmos",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Use custom colors and more in Desmos to beautify your graphs",
    "homepage_url": "http:\/\/desmos.com\/calculator",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/cdn.jsdelivr.net\/npm\/@shoelace-style\/[email protected]\/dist\/shoelace\/; object-src 'self'",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "https:\/\/www.desmos.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.desmos.com\/*"
            ],
            "js": [
                "src\/inject\/content_script.js"
            ],
            "run-at": "document-end"
        }
    ]
}