Sharemaster: Copy Title & URL with Shortcut

Helps you copy the title and url quickly with keyboard shortcuts

Sharemaster: Copy Title & URL with Shortcut là gì?

Sharemaster: Copy Title & URL with Shortcut là một tiện ích mở rộng Chrome được phát triển bởi walterteng.com, và tính năng chính của nó là "Helps you copy the title and url quickly with keyboard shortcuts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sharemaster: Copy Title & URL with Shortcut

Tải xuống các tệp mở rộng Sharemaster: Copy Title & URL with Shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sharemaster: Copy Title & URL with Shortcut Sharemaster: Copy Title & URL with Shortcut
ID cglaemmecoiemahimhggkppegekpfdca
URL Chính Thức https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca
Mô tả Helps you copy the title and url quickly with keyboard shortcuts
Kích Thước Tệp 9.82 KB
Số Lần Cài Đặt 158
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-05-04
Ngày Phát Hành 2021-06-10
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển walterteng.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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)"
        }
    }
}