Follow link

Follow any link with simple shortcuts

Follow linkคืออะไร?

Follow link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Felix Bechstein และคุณลักษณะหลักของมันคือ "Follow any link with simple shortcuts"

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

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

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

                        Follow Link is a simple chrome extension for following links on any website with your keyboard.

1. Configure shortcuts: `chrome://extensions/configureCommands`
2. Press the shortcut from above to enter the follow mode.
3. Enter any part of the links text for selection.
4. Press `Tab` for cycling through selected links.
   Press `Shift+Tab` for cycling backwards.
5. Press `Enter` for opening the selected link.                    

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

ชื่อ Follow link Follow link
ID pelfimbllmbmenkdhlfahedggmkobhmp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/follow-link/pelfimbllmbmenkdhlfahedggmkobhmp
คำอธิบาย Follow any link with simple shortcuts
ขนาดไฟล์ 9.97 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2017-11-19
วันที่เผยแพร่ 2017-11-19
ผู้พัฒนา Felix Bechstein
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/felixb/followlink
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Follow link",
    "version": "0.3",
    "description": "Follow any link with simple shortcuts",
    "homepage_url": "https:\/\/github.com\/felixb\/followlink",
    "permissions": [
        "tabs",
        "webNavigation",
        ""
    ],
    "commands": {
        "follow-link-same-tab": {
            "suggested_key": {
                "default": "Ctrl+G"
            },
            "description": "Follow link in same tab"
        },
        "follow-link-new-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+G"
            },
            "description": "Follow link in new tab"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/follow_link.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}