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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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:\/\/*\/*"
            ]
        }
    ]
}