Clean copy URL

Copy the current URL without extraneous stuff.

Τι είναι το Clean copy URL;

Το Clean copy URL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alben Software, και η κύρια λειτουργία του είναι "Copy the current URL without extraneous stuff.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Clean copy URL

Λήψη αρχείων επέκτασης Clean copy URL σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension lets you choose which URL to copy to the clipboard based on the page you are viewing. It helps you remove all the tracking data sites like Amazon typically append to your product search. It also lets you open a selected cleaned up link in either the current window or in a new one.

A typical example is when you end up with:

https://www.amazon.com/Mathematica-Cookbook-Building-Science-Engineering/dp/0596520999/ref=mp_s_a_1_17?ie=UTF8&qid=1540661026&sr=8-17&pi=AC_SX236_SY340_QL65&keywords=mathematica&dpPl=1&dpID=51VOw%2BIWKRL&ref=plSrch

When all you want is:

https://www.amazon.com/Mathematica-Cookbook-Building-Science-Engineering/dp/0596520999

This extensions needs the "tabs" permission, which Chrome describes as "can read and change all your data on websites you visit." That description is very scary, and is certainly not what this extension is doing. Being an open-sourced project, you can always read all the code to see how this extension works, and what it's [not] doing with your data.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Clean copy URL Clean copy URL
ID kighipielgfodicnpbfojmendoillcie
Επίσημο URL https://chromewebstore.google.com/detail/clean-copy-url/kighipielgfodicnpbfojmendoillcie
Περιγραφή Copy the current URL without extraneous stuff.
Μέγεθος Αρχείου 23.74 KB
Αριθμός Εγκαταστάσεων 262
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2019-07-14
Ημερομηνία Δημοσίευσης 2019-07-09
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Alben Software
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clean copy URL",
    "short_name": "Clean copy",
    "description": "Copy the current URL without extraneous stuff.",
    "homepage_url": "https:\/\/github.com\/bennypollak\/copy_clean_url",
    "version": "1.0.3",
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Clean copy URL",
        "default_icon": "icon128.png"
    },
    "commands": {
        "clean-copy": {
            "description": "clean-copy",
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        },
        "just-copy": {
            "description": "just-copy",
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            }
        }
    },
    "manifest_version": 2
}