Tagged Bookmarks
A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
Was ist Tagged Bookmarks?
Tagged Bookmarks ist eine Chrome-Erweiterung, die von paulshir entwickelt wurde, und ihr Hauptmerkmal ist "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".
Tagged Bookmarks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tagged Bookmarks-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
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.
Grundlegende Informationen zur Erweiterung
Name | Tagged Bookmarks |
ID | ifmjnildbmfokeoakbbhjebmiepcjgfc |
Offizielle URL | https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc |
Beschreibung | A browser action with a popup dump of all bookmarks, including search, add, edit and delete. |
Dateigröße | 12.41 KB |
Installationsanzahl | 10 |
Aktuelle Version | 0.1 |
Letztes Update | 2014-10-08 |
Veröffentlichungsdatum | 2014-10-08 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | paulshir |
Zahlungsart | free |
Unterstützte Sprachen | 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'" } |