Save Pinned Tabs
Save your current pinned tabs.
Save Pinned Tabsとは何ですか?
Save Pinned Tabsはsave-pinnedによって開発されたChromeの拡張機能で、その主な機能は「Save your current pinned tabs.」です。
拡張機能のスクリーンショット
Save Pinned Tabs拡張機能のCRXファイルをダウンロード
Save Pinned Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        This extension allows you to save your current pinned tabs as a set. You can then load the pinned tab set on any window that has the extension enabled. You can also set one of your tab sets to be auto-loaded on browser start. Extension syncing is supported.                     拡張機能の基本情報
| 名前 |  | 
| ID | anmidgajdonkgmmilbccfefkfieajakd | 
| 公式URL | https://chromewebstore.google.com/detail/save-pinned-tabs/anmidgajdonkgmmilbccfefkfieajakd | 
| 説明 | Save your current pinned tabs. | 
| ファイルサイズ | 116 KB | 
| インストール数 | 26,480 | 
| 現在のバージョン | 1.1.3 | 
| 最終更新日 | 2021-03-09 | 
| 公開日 | 2018-10-07 | 
| 評価 | 4.48/5 合計 89 レビュー | 
| 開発者 | save-pinned | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | https://github.com/jmakila/SavePinned | 
| 対応言語 | en-US | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save Pinned Tabs",
    "short_name": "Save Pinned",
    "version": "1.1.3",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "description": "Save your current pinned tabs.",
    "icons": {
        "128": "images\/icon_128.png",
        "64": "images\/icon_64.png",
        "32": "images\/icon_32.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/icon_128.png",
            "64": "images\/icon_64.png",
            "32": "images\/icon_32.png"
        },
        "default_popup": "popup.html",
        "default_title": "Save pinned tabs"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "functions.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true,
        "open_in_tab": true
    }
} | |