Links Disabler

A lightweight extension which lets you disable all links on a webpage.

Links Disabler क्या है?

Links Disabler Fabio Sangregorio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A lightweight extension which lets you disable all links on a webpage."।

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

screenshot
screenshot
screenshot

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

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

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

                        A lightweight extension which lets you disable all links on a webpage.

Usage
• • •
To toggle between disabling and enabling all links, simply click the extension icon (located in the upper right corner of the browser) or use the keyboard shortcut **Alt + Shift + D**.

Features
• • •
The extension curretly comes with two main features, which can be activated through the extension's options page (see below for more details).

• Save toggle status globally and on page reload: if this option is checked, when you hit "disable links" the change will be reflected on all tabs, and links will stay disabled even after page reload.

• Only disable links that follow a pattern: if this option is enabled, when you hit "disable links" only links in the disable list will be disabled. All other links will stay enabled. This option is automatically enabled if the disable list is not empty. The disable list can be configured with a pattern per line, and accepts wildcards with the * sign. 

Configuration
• • •

• Shortcuts: you can configure the shortcut in the Chrome shortcuts page at chrome://extensions/shortcuts

• Options: you can configure the extension options through the extension's options page

Bugs and feature requests
• • •
For any issues, bugs and feature requests feel free to open an issue on Github at https://github.com/fabiosangregorio/links-disabler/issues                    

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

नाम Links Disabler Links Disabler
ID dpgcehldjbcfejamdkfaeoamlpjlhbig
आधिकारिक URL https://chromewebstore.google.com/detail/links-disabler/dpgcehldjbcfejamdkfaeoamlpjlhbig
विवरण A lightweight extension which lets you disable all links on a webpage.
फ़ाइल का आकार 13.24 KB
स्थापना संख्या 1,103
वर्तमान संस्करण 1.3.1
अंतिम अपडेट 2020-12-02
प्रकाशन तिथि 2018-11-01
रेटिंग 4.20/5 कुल 10 रेटिंग्स
डेवलपर Fabio Sangregorio
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/fabiosangregorio/links-disabler
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.3.1",
    "name": "Links Disabler",
    "description": "A lightweight extension which lets you disable all links on a webpage.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "browser_action": [],
    "commands": {
        "toggle-links": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Disable\/Enable links"
        }
    },
    "manifest_version": 2
}