Tagged Bookmarks
A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
Qu'est-ce que Tagged Bookmarks ?
Tagged Bookmarks est une extension Chrome développée par paulshir, et sa fonction principale est "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".
Télécharger le fichier CRX de l'extension Tagged Bookmarks
Téléchargez les fichiers d'extension Tagged Bookmarks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Tagged Bookmarks |
ID | ifmjnildbmfokeoakbbhjebmiepcjgfc |
URL Officiel | 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. |
Taille du Fichier | 12.41 KB |
Nombre d'Installations | 10 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2014-10-08 |
Date de Publication | 2014-10-08 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | paulshir |
Type de Paiement | free |
Langues Prises en Charge | 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'" } |