Tagger

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

Tagger là gì?

Tagger là một tiện ích mở rộng Chrome được phát triển bởi jaewoong.info, và tính năng chính của nó là "Tag web pages so that you can easily find it later.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tagger

Tải xuống các tệp mở rộng Tagger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tagger Tagger
ID hedcldmdcdgjaccenecldaklgfkmceaf
URL Chính Thức https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf
Mô tả Tag web pages so that you can easily find it later.
Kích Thước Tệp 34.38 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-11-19
Ngày Phát Hành 2014-11-19
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jaewoong.info
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jaewoongh/tagger-chrome
Ngôn Ngữ Được Hỗ Trợ 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"
}