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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
        }
    }
}