Bookmark Visualizer

Tool to visually interact and organize bookmarks

Was ist Bookmark Visualizer?

Bookmark Visualizer ist eine Chrome-Erweiterung, die von diana.suvorova entwickelt wurde, und ihr Hauptmerkmal ist "Tool to visually interact and organize bookmarks".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Bookmark Visualizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bookmark Visualizer-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

                        This is a tool to visualize all the precious web content you have saved in your bookmark bar.
The goal is to give all your digital knowledge "in-a-glance" representation fitting in a single page. No nested folders. No tree structures.

In addition to letting you  enjoy the view of all your favorite digital content the app supports below functionality: 
1. Add new Category
2. Add new URL
3. Search
3. Drag and Drop bubble to change category
4. Delete category
5. Bubble resize
6. Expand/Collapse categories

Thanks for trying it out :)                    

Grundlegende Informationen zur Erweiterung

Name Bookmark Visualizer Bookmark Visualizer
ID fmlnkfjpadhcjoiphjhpfjbjmoicinnl
Offizielle URL https://chromewebstore.google.com/detail/bookmark-visualizer/fmlnkfjpadhcjoiphjhpfjbjmoicinnl
Beschreibung Tool to visually interact and organize bookmarks
Dateigröße 4.26 MB
Installationsanzahl 107
Aktuelle Version 2.2
Letztes Update 2014-06-14
Veröffentlichungsdatum 2014-06-14
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler diana.suvorova
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.2",
    "name": "Bookmark Visualizer",
    "description": "Tool to visually interact and organize bookmarks",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "sources\/jquery-2.1.0.min.js",
                "sources\/d3.v3.min.js",
                "main.js"
            ],
            "matches": [
                "http:\/\/api.thumbalizr.com\/*\/"
            ]
        }
    ],
    "permissions": [
        "bookmarks"
    ]
}