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)."입니다.

확장 프로그램 스크린샷

screenshot

Alternative Copy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            }
        }
    }
}