Alternative Copy
Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C).
什么是Alternative Copy?
Alternative Copy是由Eric Menze开发的Chrome扩展程序,该扩展的主要功能是“Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C).”。
扩展截图
下载Alternative Copy扩展crx文件
下载Alternative Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension copies a shareable URL of the current tab to your clipboard. Many sites include long irrelevant strings of text in the URL bar that include tracking and advertising data that aren't friendly to share. Clicking the icon or pressing Alt+C will activate this extension, and the keyboard shortcut can be changed in your chrome://extensions/shortcuts page. This extension removes the query string, and will further remove irrelevant data on supported sites to get to a short URL more appropriate for sharing. Sites currently supported for enhanced shortening: - eBay items (removes item description from URL) - Amazon items (removes item description and referrer from URL) - YouTube videos (removes playlist and start time from URL) - Local File URLs (copies a local path instead of URL) For file:// urls that are on your local hard drive, Alternative Copy will put the native path string into the clipboard, and will surround the path with quotes if it contains any spaces. For example, file:///C:/Projects/AlternativeCopy/Test%20File%20URL.txt would copy as "C:\Projects\AlternativeCopy\Test File URL.txt" (windows), and file:///Temp/AlternativeCopy/TestFile.txt would copy as /Temp/AlternativeCopy/TestFile.txt (linux, BSD, MacOS).
扩展基本信息
名称 | Alternative Copy |
ID | okpfaahmakpepeoahekhiehomdiikjjg |
官方URL | https://chromewebstore.google.com/detail/alternative-copy/okpfaahmakpepeoahekhiehomdiikjjg |
简介 | Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C). |
文件大小 | 7.51 KB |
安装次数 | 22 |
当前版本 | 1.4 |
更新时间 | 2022-12-07 |
上架时间 | 2019-12-15 |
评分 | 5.00/5 共1次评分 |
开发者 | Eric Menze |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Ehryk/AlternativeCopy |
帮助页面URL | https://github.com/Ehryk/AlternativeCopy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Alternative Copy", "short_name": "Alt.Copy", "version": "1.4", "description": "Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C).", "author": "Eric Menze", "browser_action": { "default_icon": "icon.png", "default_title": "Alternative Copy" }, "offline_enabled": true, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "clipboardRead", "clipboardWrite", "activeTab" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+C" } } } } |