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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Alternative Copy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            }
        }
    }
}