Follow link

Follow any link with simple shortcuts

Follow link क्या है?

Follow link Felix Bechstein द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Follow any link with simple shortcuts"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Follow link एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
        }
    ]
}