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 |
官方網址 | 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" } |