Tagged Bookmarks
A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
什么是Tagged Bookmarks?
Tagged Bookmarks是由paulshir开发的Chrome扩展程序,该扩展的主要功能是“A browser action with a popup dump of all bookmarks, including search, add, edit and delete.”。
下载Tagged Bookmarks扩展crx文件
下载Tagged Bookmarks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Tagged Bookmarks |
ID | ifmjnildbmfokeoakbbhjebmiepcjgfc |
官方URL | https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc |
简介 | A browser action with a popup dump of all bookmarks, including search, add, edit and delete. |
文件大小 | 12.41 KB |
安装次数 | 10 |
当前版本 | 0.1 |
更新时间 | 2014-10-08 |
上架时间 | 2014-10-08 |
评分 | 4.00/5 共1次评分 |
开发者 | paulshir |
付费类型 | free |
支持的语言 | 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'" } |