Tab Link Copier

Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs

什么是Tab Link Copier?

Tab Link Copier是由Volodya Shtenovych开发的Chrome扩展程序,该扩展的主要功能是“Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs”。

扩展截图

screenshot

下载Tab Link Copier扩展crx文件

下载Tab Link Copier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Copies the current page url and title as a rich text link. 

Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor.

To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url.                    

扩展基本信息

名称 Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
官方URL https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
简介 Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
文件大小 19.26 KB
安装次数 668
当前版本 1.2.3
更新时间 2020-05-02
上架时间 2020-05-02
评分 3.67/5 共15次评分
开发者 Volodya Shtenovych
付费类型 free
扩展官网 https://github.com/Leksyk/chrome-copy-link
帮助页面URL https://github.com/Leksyk/chrome-copy-link
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Link Copier",
    "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
    "version": "1.2.3",
    "background": {
        "persistent": false,
        "scripts": [
            "copyLink.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "copy-link": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "Command+MacCtrl+C"
            },
            "description": "Copy Link as Rich Text"
        },
        "copy-as-plain": {
            "description": "Copy Link and Title as Plain Text"
        }
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}