Design Mode: Edit any webpage

Edit the text on any website!

Design Mode: Edit any webpage란 무엇입니까?

Design Mode: Edit any webpage은(는) PomPom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Edit the text on any website!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Design Mode: Edit any webpage 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Welcome to Design Mode!

Tutorial
Click the extension to turn edit mode on or off
The clear button will clear and reload the page
Drag images around to move them
Right click on any page to quickly edit anything

Keyboard Shortcuts:
Ctrl + B
Ctrl + I
Ctrl + U
Ctrl + X
Ctrl + Z
And more...

Help
If you find any bugs or need help go here https://forms.gle/nJahJziDYQWfpb5j9

Changelog
2.0.0
Added a full UI
Added saving
Added clear button
Quickly edit by right clicking on any page
Image dragging note

1.2.0
Added saving (coming soon)
Added keyboard shortcuts section

1.0.0
Released!                    

확장 프로그램 기본 정보

이름 Design Mode: Edit any webpage Design Mode: Edit any webpage
ID fgmjppcglpnaigphlkjioilhjpebhlla
공식 URL https://chromewebstore.google.com/detail/design-mode-edit-any-webp/fgmjppcglpnaigphlkjioilhjpebhlla
설명 Edit the text on any website!
파일 크기 90.97 KB
설치 횟수 37
현재 버전 2.0.0
최근 업데이트 2021-08-09
출시 날짜 2021-04-15
개발자 PomPom
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://forms.gle/nJahJziDYQWfpb5j9
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png",
        "default_title": "Design Mode"
    },
    "name": "Design Mode: Edit any webpage",
    "short_name": "Design Mode",
    "description": "Edit the text on any website!",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "2.0.0",
    "manifest_version": 2
}