Alternative Copy

Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C).

Τι είναι το Alternative Copy;

Το Alternative Copy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eric Menze, και η κύρια λειτουργία του είναι "Copies a shortened shareable link of the current tab's address to the clipboard (default: Alt+C).".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Alternative Copy

Λήψη αρχείων επέκτασης 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 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"
            }
        }
    }
}