Tagger
Tag web pages so that you can easily find it later.
Qu'est-ce que Tagger ?
Tagger est une extension Chrome développée par jaewoong.info, et sa fonction principale est "Tag web pages so that you can easily find it later.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tagger
Téléchargez les fichiers d'extension Tagger 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 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
Informations de Base sur l'Extension
Nom | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
URL Officiel | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
Description | Tag web pages so that you can easily find it later. |
Taille du Fichier | 34.38 KB |
Nombre d'Installations | 18 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-11-19 |
Date de Publication | 2014-11-19 |
Évaluation | 3.00/5 Total 1 Évaluations |
Développeur | jaewoong.info |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jaewoongh/tagger-chrome |
Langues Prises en Charge | 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" } |