Bookmark All

Extends chrome's bookmark all tabs feature across all open windows.

Bookmark Allとは何ですか?

Bookmark AllはAndrew Sutherlandによって開発されたChromeの拡張機能で、その主な機能は「Extends chrome's bookmark all tabs feature across all open windows.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Super simple extension. Extends chrome's 'Bookmark all Tabs' feature across all open windows. 

Click the icon, choose your folder (ISO 8601 Short by default) and every tab in every window is bookmarked into the new folder under 'Other Bookmarks'. That's it!

This extension is open sourced on github, see Details > Website.                    

拡張機能の基本情報

名前 Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
公式URL https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
説明 Extends chrome's bookmark all tabs feature across all open windows.
ファイルサイズ 67 KB
インストール数 3,483
現在のバージョン 4
最終更新日 2013-08-26
公開日 2013-08-26
評価 4.18/5 合計 34 レビュー
開発者 Andrew Sutherland
支払い方法 free
拡張機能のウェブサイト https://github.com/drewis/chrome_extension_bookmark_all
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "4",
    "name": "Bookmark All",
    "author": "Andrew Sutherland",
    "description": "Extends chrome's bookmark all tabs feature across all open windows.",
    "permissions": [
        "bookmarks",
        "tabs"
    ],
    "icons": {
        "128": "star_icons_128.png",
        "48": "star_icons_48.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "star_icons_19.png",
            "38": "star_icons_38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Bookmark All"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}