SuperDev Pro

A must-have browser extension for web development.

SuperDev Pro란 무엇입니까?

SuperDev Pro은(는) https://superdevpro.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A must-have browser extension for web development."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

SuperDev Pro 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        SuperDev Pro is a 14-in-1 browser extension 🧩 for web development that allows you to inspect, edit and refine any website right within the browser. Works on every website regardless of the frameworks, plugins, libraries, or themes used.

❇️ Features List
*️⃣ CSS Inspector: Inspect or edit website elements.
*️⃣ Live Text Editor: Edit text on a website instantly.
*️⃣ Fonts Changer: Try 1100+ Google and local fonts.
*️⃣ List All Fonts: Identify all fonts used on a website.
*️⃣ Color Picker: Pick colors from a website at pixel level.
*️⃣ Color Palette: Discover all colors used on a website.
*️⃣ Move Element: Easily move website elements.
*️⃣ Delete Element: Delete or hide website elements.
*️⃣ Export Element: Export elements from a website.
*️⃣ Extract Images: Extract any image from a website.
*️⃣ Page Ruler: Measure anything on a website.
*️⃣ Page Outliner: Outline the entire website or an HTML tag.
*️⃣ Image Replacer: Replace website images with local images.
*️⃣ Take Screenshot: Capture different types of screenshots.                    

확장 프로그램 기본 정보

이름 SuperDev Pro SuperDev Pro
ID jlkikimlceonbmfjieipbonnglnlchhl
공식 URL https://chromewebstore.google.com/detail/superdev-pro/jlkikimlceonbmfjieipbonnglnlchhl
설명 A must-have browser extension for web development.
파일 크기 6.15 MB
설치 횟수 4,018
현재 버전 3.4.7
최근 업데이트 2024-02-26
출시 날짜 2022-10-17
평점 4.78/5 총 18 개의 평점
개발자 https://superdevpro.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://superdevpro.com/
도움말 페이지 URL https://superdevpro.com/contact
개인정보 보호 정책 페이지 URL https://superdevpro.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperDev Pro",
    "version": "3.4.7",
    "author": "SuperDev Pro",
    "description": "A must-have browser extension for web development.",
    "manifest_version": 3,
    "minimum_chrome_version": "101",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "contextMenus",
        "tabs",
        "scripting",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "incognito": "split",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S",
                "mac": "Ctrl+Shift+S",
                "windows": "Ctrl+Shift+S"
            }
        }
    },
    "action": {
        "default_title": "SuperDev Pro"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "css": [
                "libs\/css\/fafontfaces.css",
                "css\/contentscript.css"
            ],
            "js": [
                "libs\/js\/jszip.js",
                "libs\/js\/filesaver.js",
                "js\/contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "css\/*",
                "fonts\/*",
                "html\/*",
                "icons\/*",
                "libs\/*"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    }
}