Lash Story Board

Manipulate the DOM when the page is done loading

Lash Story Boardとは何ですか?

Lash Story BoardはAnand Patelによって開発されたChromeの拡張機能で、その主な機能は「Manipulate the DOM when the page is done loading」です。

拡張機能のスクリーンショット

screenshot

Lash Story Board拡張機能のCRXファイルをダウンロード

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