Tagger

Tag web pages so that you can easily find it later.

What is Tagger?

Tagger is a Chrome extension developed by jaewoong.info, and its main feature is "Tag web pages so that you can easily find it later.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Tagger Extension CRX File

Download Tagger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Tagger Tagger
ID hedcldmdcdgjaccenecldaklgfkmceaf
Official URL https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf
Description Tag web pages so that you can easily find it later.
File Size 34.38 KB
Installation Count 18
Current Version 1.0
Last Updated 2014-11-19
Publish Date 2014-11-19
Rating 3.00/5 Total 1 Ratings
Developer jaewoong.info
Payment Type free
Extension Website https://github.com/jaewoongh/tagger-chrome
Supported Languages 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"
}