SuperDev Pro

A must-have browser extension for web development.

SuperDev Proคืออะไร?

SuperDev Pro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://superdevpro.com และคุณลักษณะหลักของมันคือ "A must-have browser extension for web development."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SuperDev Pro

ดาวน์โหลดไฟล์ส่วนขยาย SuperDev Pro ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            }
        ]
    }
}