Squirtle

Record and playback actionable items on web pages

Squirtleとは何ですか?

Squirtleはkaikai526によって開発されたChromeの拡張機能で、その主な機能は「Record and playback actionable items on web pages」です。

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

Squirtle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Save the state of a webpage in a url that can be saved or shared                    

拡張機能の基本情報

名前 Squirtle Squirtle
ID ikfmiieigckolmjfhjbdpfjhdmgdfmjo
公式URL https://chrome.google.com/webstore/detail/squirtle/ikfmiieigckolmjfhjbdpfjhdmgdfmjo
説明 Record and playback actionable items on web pages
ファイルサイズ 71.38 KB
インストール数 19
現在のバージョン 1.0
最終更新日 2014-09-28
公開日 2014-09-28
評価 1.00/5 合計 1 レビュー
開発者 kaikai526
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Squirtle",
    "description": "Record and playback actionable items on web pages",
    "version": "1.0",
    "browser_action": {
        "default_icon": "img\/icon2.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/State.js",
            "js\/listeners.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/playback.js",
                "js\/State.js",
                "js\/API.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/record_dialog.js",
        "js\/playback.js",
        "js\/save-state.js",
        "js\/State.js",
        "js\/API.js"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}