Link Collector

Quickly view and access all the links on any page.

Link Collector क्या है?

Link Collector attilathedud द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly view and access all the links on any page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

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

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

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

                        Quickly view and access all the links on any page. Use simple key-binds to easily page and navigate to them. Activation is as easy as Alt + i.

Have a specific link you want to find? Use Alt + f to search for it.

Support and code can be found at https://github.com/attilathedud/Link_Collector

v1.1.0
- Added the ability to change the hotkey. Hotkey can now be adjusted from the chrome://extensions page.
- Added the ability to click the navigation arrows to page through results.
- Added the ability to disable the extension.
- Fixed a bug where alt+enter would trigger a download if a page element was selected.                    

एक्सटेंशन की मूल जानकारी

नाम Link Collector Link Collector
ID mkfggmeifjpmndaflbgcnoocjikgblob
आधिकारिक URL https://chromewebstore.google.com/detail/link-collector/mkfggmeifjpmndaflbgcnoocjikgblob
विवरण Quickly view and access all the links on any page.
फ़ाइल का आकार 24.44 KB
स्थापना संख्या 547
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2018-02-01
प्रकाशन तिथि 2018-02-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर attilathedud
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/attilathedud/Link_Collector
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Collector",
    "short_name": "LinkCollector",
    "version": "1.1.0",
    "description": "Quickly view and access all the links on any page.",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "imgs\/icon16.png",
        "32": "imgs\/icon32.png",
        "48": "imgs\/icon48.png",
        "64": "imgs\/icon64.png",
        "128": "imgs\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/injected.css"
            ],
            "js": [
                "scripts\/external\/mousetrap.min.js",
                "scripts\/injected.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Link Collector",
        "default_popup": "pages\/popup_settings.html"
    },
    "commands": {
        "toggle_panel": {
            "description": "Toggle the display of the panel",
            "suggested_key": "Alt+I"
        }
    }
}