iSpy - a localStorage Manager

This extension provides users with a simple interface to localStorage

iSpy - a localStorage Managerคืออะไร?

iSpy - a localStorage Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rossedfort.com และคุณลักษณะหลักของมันคือ "This extension provides users with a simple interface to localStorage"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย iSpy - a localStorage Manager

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

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

                        iSpy provides full access and management of your browser's localStorage. Simply open the extension to add, edit, or remove localStorage entries. iSpy is build using ReactJS and uses icons from fontawesome. It offers several different color themes, each with a light and dark mode.                    

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

ชื่อ iSpy - a localStorage Manager iSpy - a localStorage Manager
ID kaddnceobbflkbpfmnlpoijihclphame
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ispy-a-localstorage-manag/kaddnceobbflkbpfmnlpoijihclphame
คำอธิบาย This extension provides users with a simple interface to localStorage
ขนาดไฟล์ 981 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2019-10-12
วันที่เผยแพร่ 2019-10-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://rossedfort.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iSpy - a localStorage Manager",
    "short_name": "iSpy",
    "description": "This extension provides users with a simple interface to localStorage",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ]
}