Tagger
Tag web pages so that you can easily find it later.
Vad är Tagger?
Tagger är en Chrome-tillägg utvecklad av jaewoong.info, och dess huvudfunktion är "Tag web pages so that you can easily find it later.".
Tilläggsskärmbilder
Ladda ner Tagger-förlängningens CRX-fil
Ladda ner Tagger-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
Officiell webbadress | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
Beskrivning | Tag web pages so that you can easily find it later. |
Filstorlek | 34.38 KB |
Antal Installationer | 18 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2014-11-19 |
Publiceringsdatum | 2014-11-19 |
Betyg | 3.00/5 Totalt 1 Betyg |
Utvecklare | jaewoong.info |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jaewoongh/tagger-chrome |
Stödda Språk | 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" } |