Copy Link

Copy links and page urls with text from context menu

什麼是Copy Link?

Copy Link是由axmet180開發的Chrome擴展程式,該擴展的主要功能是“Copy links and page urls with text from context menu”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Copy Link擴展crx文件

下載Copy Link擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}