Inspector Saver

Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.

Inspector Saverคืออะไร?

Inspector Saver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://trumani.com และคุณลักษณะหลักของมันคือ "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself."

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

screenshot

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

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

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

                        Store HTML and CSS changes in the browser so that you can return to it later. Showcase your changes with colleagues and clients by loading the edits. You can remove all edits you have captured on a specific page or on all pages at any time.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
คำอธิบาย Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 660
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2019-10-16
วันที่เผยแพร่ 2019-10-13
คะแนน 2.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา https://trumani.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://trumani.com/products
URL หน้านโยบายความเป็นส่วนตัว http://trumani.com/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inspector Saver",
    "description": "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.",
    "version": "1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "trumani_material.png"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "detective-16.png",
        "48": "detective-48.png",
        "128": "detective-128.png"
    },
    "background": {
        "scripts": [
            "js\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ]
}