Tagger
Tag web pages so that you can easily find it later.
什么是Tagger?
Tagger是由jaewoong.info开发的Chrome扩展程序,该扩展的主要功能是“Tag web pages so that you can easily find it later.”。
扩展截图
下载Tagger扩展crx文件
下载Tagger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension to enable OS X style tagging on web pages. Tagged pages are highlighted on search results pages. By default, highlighting works on Google, Duckduckgo, Yahoo and Bing. You can change settings on options page. Feel free to contribute or report issues: https://github.com/jaewoongh/tagger-chrome
扩展基本信息
名称 | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
官方URL | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
简介 | Tag web pages so that you can easily find it later. |
文件大小 | 34.38 KB |
安装次数 | 18 |
当前版本 | 1.0 |
更新时间 | 2014-11-19 |
上架时间 | 2014-11-19 |
评分 | 3.00/5 共1次评分 |
开发者 | jaewoong.info |
付费类型 | free |
扩展官网 | https://github.com/jaewoongh/tagger-chrome |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tagger", "version": "1.0", "description": "Tag web pages so that you can easily find it later.", "author": "Jaewoong Hwang", "permissions": [ "webNavigation", "tabs", "storage", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "tagger.js" ] } ], "page_action": { "default_icon": { "19": "pageicon.png", "38": "pageicon2x.png" }, "default_title": "Tag", "default_popup": "popup.html" }, "options_page": "options.html" } |