Tagger
Tag web pages so that you can easily find it later.
Wat is Tagger?
Tagger is een Chrome-extensie ontwikkeld door jaewoong.info, en de belangrijkste functie is "Tag web pages so that you can easily find it later.".
Extensie Screenshots
Download het CRX-bestand van de extensie Tagger
Download Tagger-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
Officiële URL | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
Beschrijving | Tag web pages so that you can easily find it later. |
Bestandsgrootte | 34.38 KB |
Aantal Installaties | 18 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-11-19 |
Publicatiedatum | 2014-11-19 |
Beoordeling | 3.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | jaewoong.info |
Betalingswijze | free |
Extensiewebsite | https://github.com/jaewoongh/tagger-chrome |
Ondersteunde Talen | 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" } |