Bookmark All

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

Vad är Bookmark All?

Bookmark All är en Chrome-tillägg utvecklad av Andrew Sutherland, och dess huvudfunktion är "Extends chrome's bookmark all tabs feature across all open windows.".

Tilläggsskärmbilder

screenshot

Ladda ner Bookmark All-förlängningens CRX-fil

Ladda ner Bookmark All-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
Officiell webbadress https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
Beskrivning Extends chrome's bookmark all tabs feature across all open windows.
Filstorlek 67 KB
Antal Installationer 3,483
Aktuell Version 4
Senast Uppdaterad 2013-08-26
Publiceringsdatum 2013-08-26
Betyg 4.18/5 Totalt 34 Betyg
Utvecklare Andrew Sutherland
Betalningssätt free
Tilläggswebbplats https://github.com/drewis/chrome_extension_bookmark_all
Stödda Språk 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"
        ]
    }
}