Tagged Bookmarks

A browser action with a popup dump of all bookmarks, including search, add, edit and delete.

What is Tagged Bookmarks?

Tagged Bookmarks is a Chrome extension developed by paulshir, and its main feature is "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".

Download Tagged Bookmarks Extension CRX File

Download Tagged Bookmarks 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

                        A simple extension that enables you to store and search for tags in your bookmarks.

It works by adding extra metadata to your existing bookmarks so your tags are synced with your chrome bookmarks.                    

Extension Basic Information

Name Tagged Bookmarks Tagged Bookmarks
ID ifmjnildbmfokeoakbbhjebmiepcjgfc
Official URL https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc
Description A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
File Size 12.41 KB
Installation Count 10
Current Version 0.1
Last Updated 2014-10-08
Publish Date 2014-10-08
Rating 4.00/5 Total 1 Ratings
Developer paulshir
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tagged Bookmarks",
    "version": "0.1",
    "description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.",
    "permissions": [
        "tabs",
        "bookmarks"
    ],
    "omnibox": {
        "keyword": "tags"
    },
    "icons": {
        "16": "tag_16.png",
        "48": "tag_48.png",
        "128": "tag_128.png"
    },
    "browser_action": {
        "default_title": "Tagged Bookmarks",
        "default_icon": "tag_16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}