Linkman

This extension communicates between the Chrome browser and the Windows bookmark manager Linkman.

Linkmanคืออะไร?

Linkman เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Outertech และคุณลักษณะหลักของมันคือ "This extension communicates between the Chrome browser and the Windows bookmark manager Linkman."

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

screenshot

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

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

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

                        This chrome extension gives you the ability to work with the Windows bookmark manager Linkman directly from your Chrome browser. You can add new bookmarks from Chrome to Linkman and also search for bookmarks in Linkman. Please keep in mind that you need to install the Windows Linkman application, before installing the Linkman Chrome (http://www.outertech.com/en/bookmark-manager). You can see a tutorial for Linkman on youtube: http://www.youtube.com/v/K9k-wVDwYtw?vq=hd1080                    

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

ชื่อ Linkman Linkman
ID pchnedaeogijkjjkjigbijhbcanbdjkc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/linkman/pchnedaeogijkjjkjigbijhbcanbdjkc
คำอธิบาย This extension communicates between the Chrome browser and the Windows bookmark manager Linkman.
ขนาดไฟล์ 32.9 KB
จำนวนการติดตั้ง 5,026
เวอร์ชันปัจจุบัน 8.9.7.0
อัปเดตครั้งล่าสุด 2017-06-26
วันที่เผยแพร่ 2017-06-26
คะแนน 4.20/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา Outertech
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.outertech.com/en/bookmark-manager
URL หน้าช่วยเหลือ http://www.outertech.com/en/contact
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Linkman",
    "manifest_version": 2,
    "description": "This extension communicates between the Chrome browser and the Windows bookmark manager Linkman.",
    "version": "8.9.7.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "linkman16.png",
        "48": "linkman48.png",
        "128": "linkman128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/127.0.0.1\/*",
        "http:\/\/localhost\/*"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "Linkman",
        "default_popup": "popup.html",
        "default_icon": "linkman19.png"
    },
    "commands": {
        "ADDURL": {
            "suggested_key": {
                "default": "Ctrl+Q"
            },
            "description": "Add to Linkman"
        },
        "ADDURLEDIT": {
            "suggested_key": {
                "default": "Ctrl+B"
            },
            "description": "Add to Linkman and Edit"
        },
        "SEARCH": {
            "suggested_key": {
                "default": "Ctrl+Y"
            },
            "description": "Search Linkman"
        },
        "ADDURLMULTIPLE": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Add all tabs to Linkman"
        }
    }
}