Tagger
Tag web pages so that you can easily find it later.
Co to jest Tagger?
Tagger to rozszerzenie Chrome opracowane przez jaewoong.info, a jego główną funkcją jest „Tag web pages so that you can easily find it later.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tagger
Pobierz pliki rozszerzeń Tagger w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
Oficjalny URL | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
Opis | Tag web pages so that you can easily find it later. |
Rozmiar pliku | 34.38 KB |
Liczba instalacji | 18 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-11-19 |
Data Publikacji | 2014-11-19 |
Ocena | 3.00/5 Łącznie 1 Oceny |
Deweloper | jaewoong.info |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jaewoongh/tagger-chrome |
Obsługiwane Języki | 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" } |