EasyThemes! for Tumblr

Allows you to edit your Tumblr themes locally on your computer with your favourite code editor.

EasyThemes! for Tumblr란 무엇입니까?

EasyThemes! for Tumblr은(는) Vitaminiser에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to edit your Tumblr themes locally on your computer with your favourite code editor."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

EasyThemes! for Tumblr 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows you to edit Tumblr themes locally with a desktop program.
---------------------------------------------------------------------------------------------------------
Instead of using built-in Tumblr code editor which is not very convenient, use your favorite IDE such as VSCode.

Synchronize Tumblr Theme Editor with local files with 1 click.

Usage Guide included.

Other features include ability to break up theme into separate files for modular development.                    

확장 프로그램 기본 정보

이름 EasyThemes! for Tumblr EasyThemes! for Tumblr
ID ngfojhkndbikighpgpnjfgpckecacpeo
공식 URL https://chromewebstore.google.com/detail/easythemes-for-tumblr/ngfojhkndbikighpgpnjfgpckecacpeo
설명 Allows you to edit your Tumblr themes locally on your computer with your favourite code editor.
파일 크기 1.5 MB
설치 횟수 38
현재 버전 1.4
최근 업데이트 2021-10-02
출시 날짜 2021-09-29
평점 5.00/5 총 1 개의 평점
개발자 Vitaminiser
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://myproggies.github.io/Pinterest-Love-Pinterest-Screenshot-Saver
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyThemes! for Tumblr",
    "short_name": "EasyThemes! for Tumblr",
    "version": "1.4",
    "description": "Allows you to edit your Tumblr themes locally on your computer with your favourite code editor.",
    "homepage_url": "https:\/\/twitter.com\/vitaminiser",
    "author": "@vitaminiser",
    "permissions": [
        "activeTab",
        "storage",
        "cookies",
        "file:\/\/\/",
        "https:\/\/*.tumblr.com\/*",
        "http:\/\/127.0.0.1\/*"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tumblr.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/www.tumblr.com\/customize\/*"
            ],
            "js": [
                "debug.js",
                "htmllib.js",
                "blog_page.js"
            ],
            "css": [
                "newcss.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.tumblr.com\/customize\/*"
            ],
            "js": [
                "debug.js",
                "htmllib.js",
                "editor_page.js"
            ],
            "css": [
                "newcss.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "debug.js",
        "inject.js",
        "htmllib.js",
        "guide\/guide.html",
        "panel.html",
        "fonts\/tumblr-icons.*",
        "settings.html",
        "dialog.html",
        "projects\/projects.html"
    ],
    "manifest_version": 2
}