Tagged Bookmarks

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

Wat is Tagged Bookmarks?

Tagged Bookmarks is een Chrome-extensie ontwikkeld door paulshir, en de belangrijkste functie is "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".

Download het CRX-bestand van de extensie Tagged Bookmarks

Download Tagged Bookmarks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tagged Bookmarks Tagged Bookmarks
ID ifmjnildbmfokeoakbbhjebmiepcjgfc
Officiële URL https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc
Beschrijving A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
Bestandsgrootte 12.41 KB
Aantal Installaties 10
Huidige Versie 0.1
Laatst Bijgewerkt 2014-10-08
Publicatiedatum 2014-10-08
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar paulshir
Betalingswijze free
Ondersteunde Talen 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'"
}