Sharemaster: Copy Title & URL with Shortcut

Helps you copy the title and url quickly with keyboard shortcuts

什么是Sharemaster: Copy Title & URL with Shortcut?

Sharemaster: Copy Title & URL with Shortcut是由walterteng.com开发的Chrome扩展程序,该扩展的主要功能是“Helps you copy the title and url quickly with keyboard shortcuts”。

扩展截图

screenshot
screenshot

下载Sharemaster: Copy Title & URL with Shortcut扩展crx文件

下载Sharemaster: Copy Title & URL with Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Helps you copy the title and url quickly with easy shortcut keys!

These are preconfigured shortcuts:
ALT + C 
Copy Page Title and URL

ALT + H
Copy Page Title and URL in HTML syntax

ALT + M
Copy Page Title and URL in Markdown syntax

These shortcuts are configurable via the chrome extensions shortcut menu too.

Alternatively, Sharemaster can also be accessed from the menu by right-clicking on the webpage.

This is ultra useful when you are working on your reports or simply sharing viral content with your friends!                    

扩展基本信息

名称 Sharemaster: Copy Title & URL with Shortcut Sharemaster: Copy Title & URL with Shortcut
ID cglaemmecoiemahimhggkppegekpfdca
官方URL https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca
简介 Helps you copy the title and url quickly with keyboard shortcuts
文件大小 9.82 KB
安装次数 158
当前版本 1.0.1
更新时间 2023-05-04
上架时间 2021-06-10
评分 4.67/5 共3次评分
开发者 walterteng.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sharemaster: Copy Title & URL with Shortcut",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Helps you copy the title and url quickly with keyboard shortcuts",
    "author": "Walter Teng",
    "homepage_url": "https:\/\/github.com\/davzoku",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "tabs"
    ],
    "commands": {
        "copyTitleURLDefault": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Copy Title and URL (default)"
        },
        "copyTitleURLMarkdown": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Copy Title and URL (Markdown)"
        },
        "copyTitleURLHTML": {
            "suggested_key": {
                "default": "Alt+H"
            },
            "description": "Copy Title and URL (HTML)"
        }
    }
}