Tagger

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

Taggerคืออะไร?

Tagger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jaewoong.info และคุณลักษณะหลักของมันคือ "Tag web pages so that you can easily find it later."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tagger

ดาวน์โหลดไฟล์ส่วนขยาย Tagger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tagger Tagger
ID hedcldmdcdgjaccenecldaklgfkmceaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf
คำอธิบาย Tag web pages so that you can easily find it later.
ขนาดไฟล์ 34.38 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-11-19
วันที่เผยแพร่ 2014-11-19
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jaewoong.info
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jaewoongh/tagger-chrome
ภาษาที่รองรับ 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"
}