Bookmark All

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

What is Bookmark All?

Bookmark All is a Chrome extension developed by Andrew Sutherland, and its main feature is "Extends chrome's bookmark all tabs feature across all open windows.".

Extension Screenshots

screenshot

Download Bookmark All Extension CRX File

Download Bookmark All extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
Official URL https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
Description Extends chrome's bookmark all tabs feature across all open windows.
File Size 67 KB
Installation Count 3,483
Current Version 4
Last Updated 2013-08-26
Publish Date 2013-08-26
Rating 4.18/5 Total 34 Ratings
Developer Andrew Sutherland
Payment Type free
Extension Website https://github.com/drewis/chrome_extension_bookmark_all
Supported Languages 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"
        ]
    }
}