SVG link viewer

Show previews of all links to SVGs

SVG link viewerคืออะไร?

SVG link viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Show previews of all links to SVGs"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SVG link viewer

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

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

                        Searches the DOM for links containing SVGs and displays a preview of that SVG below the link.                    

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

ชื่อ SVG link viewer SVG link viewer
ID lnggninmgmlcfbancjjfiplammfeeihj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/svg-link-viewer/lnggninmgmlcfbancjjfiplammfeeihj
คำอธิบาย Show previews of all links to SVGs
ขนาดไฟล์ 34.06 KB
จำนวนการติดตั้ง 694
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2015-10-26
วันที่เผยแพร่ 2015-10-26
คะแนน 1.50/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SVG link viewer",
    "manifest_version": 2,
    "version": "2",
    "description": "Show previews of all links to SVGs",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "name": "Preview SVGs",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}