Palettes for Tumblr

Colour scheme manager for Tumblr

Palettes for Tumblrとは何ですか?

Palettes for TumblrはApril Sylphによって開発されたChromeの拡張機能で、その主な機能は「Colour scheme manager for Tumblr」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Palettes for Tumblr拡張機能のCRXファイルをダウンロード

Palettes for Tumblr拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Features:
• Create your own palette, or choose from the built-in options
• Change the page font independently of your chosen palette
• Adjust the base font size

Usage:
Once you've installed the extension, click the extension icon in the browser toolbar to open its configuration.

This extension only affects pages updated to use Tumblr's new web interface. This means Tumblr pages that do not usually offer the "Change Palette" button will not be affected.                    

拡張機能の基本情報

名前 Palettes for Tumblr Palettes for Tumblr
ID kgllgjbdbkempofinoadnlleigmgppfm
公式URL https://chromewebstore.google.com/detail/palettes-for-tumblr/kgllgjbdbkempofinoadnlleigmgppfm
説明 Colour scheme manager for Tumblr
ファイルサイズ 27.5 KB
インストール数 1,083
現在のバージョン 1.0.2
最終更新日 2023-02-14
公開日 2022-03-02
評価 5.00/5 合計 2 レビュー
開発者 April Sylph
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/AprilSylph/Palettes-for-Tumblr#readme
ヘルプページのURL https://github.com/AprilSylph/Palettes-for-Tumblr/issues
プライバシーポリシーページのURL https://github.com/AprilSylph/AprilSylph/blob/master/PRIVACY.md
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Palettes for Tumblr",
    "version": "1.0.2",
    "description": "Colour scheme manager for Tumblr",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_popup": "browser_action\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.tumblr.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "lib\/browser-polyfill.min.js",
                "main.js"
            ],
            "css": [
                "peepr_shadow.css"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/AprilSylph\/Palettes-for-Tumblr#readme",
    "options_ui": {
        "page": "options\/ui.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "palettes.json",
        "paletteData.json"
    ],
    "minimum_chrome_version": "38",
    "browser_specific_settings": {
        "gecko": {
            "strict_min_version": "59.0a2"
        }
    }
}