Copy Quote Link
share page text and the link with any formats
什麼是Copy Quote Link?
Copy Quote Link是由negokaz開發的Chrome擴展程式,該擴展的主要功能是“share page text and the link with any formats”。
擴展截圖
下載Copy Quote Link擴展crx文件
下載Copy Quote Link擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
# Features - 🔗 Copy links that contain page title and text content from context menu - 🔦 Supports for creating a link which can highlight selected text (Scroll To Text Fragment) - 📝 You can make your own templates to copy # Usage - right-click on a page and select a template from "Copy link as" context menu OR - press Ctrl+Shift+X (windows/linux) or Command+Shift+X (mac) and select a template on the popup view For more details, please see the following page. https://github.com/negokaz/chrome-copy-quote-link#usage # Custom Templates To custom the context menu, you can create templates from the extension option page. You can find some examples on the following page. https://github.com/negokaz/chrome-copy-quote-link/blob/master/docs/template_examples.md
擴展基本資訊
名稱 | Copy Quote Link |
ID | ghekfhokmbflcadbpnpghlmkokcbipde |
官方網址 | https://chromewebstore.google.com/detail/copy-quote-link/ghekfhokmbflcadbpnpghlmkokcbipde |
簡介 | share page text and the link with any formats |
檔案大小 | 1.84 MB |
安裝次數 | 48 |
目前版本 | 0.2.1 |
更新時間 | 2020-08-05 |
上架時間 | 2020-07-09 |
開發者 | negokaz |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/negokaz/chrome-copy-quote-link |
說明頁面URL | https://github.com/negokaz/chrome-copy-quote-link/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Quote Link", "description": "share page text and the link with any formats", "version": "0.2.1", "manifest_version": 2, "permissions": [ "storage", "activeTab", "contextMenus", "clipboardWrite" ], "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "options.html", "browser_action": { "default_title": "Copy Quote Link", "default_popup": "popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" } } } } |