Lash Story Board

Manipulate the DOM when the page is done loading

Lash Story Boardคืออะไร?

Lash Story Board เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anand Patel และคุณลักษณะหลักของมันคือ "Manipulate the DOM when the page is done loading"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lash Story Board

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

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

                        This extension allows to inject Story Board link into DOM for TFS                    

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

ชื่อ Lash Story Board Lash Story Board
ID ambbkmfmmaacpmkgmdoigkcpnjhbaebc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lash-story-board/ambbkmfmmaacpmkgmdoigkcpnjhbaebc
คำอธิบาย Manipulate the DOM when the page is done loading
ขนาดไฟล์ 24.32 KB
จำนวนการติดตั้ง 10
เวอร์ชันปัจจุบัน 8
อัปเดตครั้งล่าสุด 2015-04-28
วันที่เผยแพร่ 2015-04-28
ผู้พัฒนา Anand Patel
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lash Story Board",
    "version": "8",
    "manifest_version": 2,
    "description": "Manipulate the DOM when the page is done loading",
    "background": {
        "pages": [
            "background.html"
        ]
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}