Link Pad

Netscape Link Pad clone

Link Padคืออะไร?

Link Pad เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 958 และคุณลักษณะหลักของมันคือ "Netscape Link Pad clone"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Chrome Link Pad is the Link Pad clone which operates by Chrome.

A click of an icon will display pop-up like a screen shot.

- A click of [Save this page] will add the present page to a link list.
- If [Save this page] is clicked in the state where the check is contained in [Close tab], the present page will be added to a link list and a tab will be closed.
- It is possible to add it from the right-clicking menu of the link to the link list.
- It is possible to add it from the right-clicking menu on the page to the link list.
- If the link under link list is clicked, the link will be opened and it will delete from a list.
- Right-click on the link in the list of links, remove it from the list.
- which adds automatically the un-active tab which carried out definite-period-of-time neglect to a link list, and closes the tab by setup.
- The list of links can operate even a keyboard. (↑, ↓, (Shift, Ctrl+)Enter, Shift+Delete)

Extend the Google Reader and Livedoor Reader.

- Google Reader and Livedoor Reader, the entry under selection can be added to a link list by the [I (Shift i)] key.

Chrome Gestures and Chrome Keyconfig is convenient to work with.

- Description of the action
-- ChromeLinkPad.addCurrentPage
--- Add the current page to the Link Pad
-- ChromeLinkPad.addCurrentPageAndClose
--- Current Page Link Pad add them to close a tab
-- ChromeLinkPad.addTargetLink
--- Dragged link It adds to Link Pad
-- ChromeLinkPad.addActiveLink
--- If the link in the page element that has focus, the link is added to the Link Pad

- Chrome Gestures gesture action for extended action
-- ChromeLinkPad.addCurrentPage
-- ChromeLinkPad.addCurrentPageAndClose

- Chrome Gestures link drag action for extended action
-- ChromeLinkPad.addTargetLink

- Chrome Keyconfig for extended action
-- ChromeLinkPad.addCurrentPage
-- ChromeLinkPad.addCurrentPageAndClose
-- ChromeLinkPad.addActiveLink                    

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

ชื่อ Link Pad Link Pad
ID hmpmgenfomdmebiokconplpaelkeejao
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-pad/hmpmgenfomdmebiokconplpaelkeejao
คำอธิบาย Netscape Link Pad clone
ขนาดไฟล์ 24.75 KB
จำนวนการติดตั้ง 558
เวอร์ชันปัจจุบัน 0.3.1
อัปเดตครั้งล่าสุด 2012-10-21
วันที่เผยแพร่ 2012-10-21
คะแนน 4.69/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา 958
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Pad",
    "version": "0.3.1",
    "default_locale": "en_US",
    "description": "Netscape Link Pad clone",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Link Pad",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "greader.js"
            ],
            "matches": [
                "http:\/\/www.google.com\/reader\/*",
                "http:\/\/www.google.co.jp\/reader\/*",
                "https:\/\/www.google.com\/reader\/*",
                "https:\/\/www.google.co.jp\/reader\/*"
            ]
        },
        {
            "js": [
                "ldr.js"
            ],
            "matches": [
                "http:\/\/reader.livedoor.com\/reader\/*",
                "http:\/\/fastladder.com\/reader\/*"
            ]
        }
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "app_icon_128.png",
        "16": "app_icon_16.png",
        "32": "app_icon_32.png",
        "48": "app_icon_48.png"
    },
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "tabs",
        "notifications",
        "chrome:\/\/favicon\/",
        "bookmarks",
        "*:\/\/*\/*"
    ]
}