Bookmark All

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

Was ist Bookmark All?

Bookmark All ist eine Chrome-Erweiterung, die von Andrew Sutherland entwickelt wurde, und ihr Hauptmerkmal ist "Extends chrome's bookmark all tabs feature across all open windows.".

Erweiterungsscreenshots

screenshot

Bookmark All-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bookmark All-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
Offizielle URL https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
Beschreibung Extends chrome's bookmark all tabs feature across all open windows.
Dateigröße 67 KB
Installationsanzahl 3,483
Aktuelle Version 4
Letztes Update 2013-08-26
Veröffentlichungsdatum 2013-08-26
Bewertung 4.18/5 Insgesamt 34 Bewertungen
Entwickler Andrew Sutherland
Zahlungsart free
Erweiterungswebsite https://github.com/drewis/chrome_extension_bookmark_all
Unterstützte Sprachen 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"
        ]
    }
}