Save Page State
Chrome extension to save a state of a page for remote analysis
Save Page Stateとは何ですか?
Save Page StateはWing Leungによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to save a state of a page for remote analysis」です。
拡張機能のスクリーンショット
Save Page State拡張機能のCRXファイルをダウンロード
Save Page State拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        A chrome extension to save the state of a page for further analysis.                     拡張機能の基本情報
| 名前 |   |  
| ID | aokllhajmkihfihciggkmpgdhgecgaic | 
| 公式URL | https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic | 
| 説明 | Chrome extension to save a state of a page for remote analysis | 
| ファイルサイズ | 52.27 KB | 
| インストール数 | 241 | 
| 現在のバージョン | 1.0.1 | 
| 最終更新日 | 2018-12-17 | 
| 公開日 | 2018-12-12 | 
| 評価 | 1.00/5 合計 2 レビュー | 
| 開発者 | Wing Leung | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | https://github.com/vrtdev/save-page-state | 
| 対応言語 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Page State",
    "version": "1.0.1",
    "description": "Chrome extension to save a state of a page for remote analysis",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "pageCapture",
        "*:\/\/*\/*"
    ]
}  |  |