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”。
擴展截圖
下載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 |
ID | cglaemmecoiemahimhggkppegekpfdca |
官方網址 | 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)" } } } |