Copy Link

Copy links and page urls with text from context menu

Copy Link क्या है?

Copy Link axmet180 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy links and page urls with text from context menu"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension provides an ability to edit Context Menu for links.

Context Menu is edited in the extension Options window.

In Options you can:
 - create new Context Menu item by specifying its Title and Macros
 - edit Context Menu item Title and Macros
 - delete Item

Menu Item Macros can contain {u} and {t} macros, which will be replaced by link URL and link Text respectively.

If you want to support this extension, there is paypal me page - https://www.paypal.me/niyaz17

var 5.4.0
---------
+ selection shortcutted option


var 5.3.0
---------
+ open options page in new tab

var 5.2.0
---------
+ drag and drop sorting of context menu items 

var 5.1.0
---------
+ copy links info from selection

ver 5.0.0
---------
+ multiline macros
+ edit functionality

ver 4.1.2
---------
+ shortcut to copy hovered link                    

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

नाम Copy Link Copy Link
ID mjpbijfgaajfmabmfnabchojdlpfnbbi
आधिकारिक URL https://chromewebstore.google.com/detail/copy-link/mjpbijfgaajfmabmfnabchojdlpfnbbi
विवरण Copy links and page urls with text from context menu
फ़ाइल का आकार 1.03 MB
स्थापना संख्या 13,232
वर्तमान संस्करण 5.5.2
अंतिम अपडेट 2020-04-03
प्रकाशन तिथि 2020-03-30
रेटिंग 3.89/5 कुल 81 रेटिंग्स
डेवलपर axmet180
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL http://www.example.com
समर्थित भाषाएँ en,ru,uk,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "5.5.2",
    "background": {
        "scripts": [
            "js\/clipboard.js",
            "js\/action.js",
            "js\/background.js",
            "js\/app.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/links.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_descr__",
    "icons": {
        "128": "res\/link128.png",
        "16": "res\/link16.png",
        "48": "res\/link48.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "storage",
        "",
        "tabs"
    ],
    "commands": {
        "copy-link-text": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "copy hovered link text"
        }
    }
}