Google Calendar Clickable Links in Popups

Fixes the issue where links in Google Calendar's popups aren't clickable.

Τι είναι το Google Calendar Clickable Links in Popups;

Το Google Calendar Clickable Links in Popups είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://jonfalkner.com, και η κύρια λειτουργία του είναι "Fixes the issue where links in Google Calendar's popups aren't clickable.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Google Calendar Clickable Links in Popups

Λήψη αρχείων επέκτασης Google Calendar Clickable Links in Popups σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Google's Calendar popups add zero width space characters every 10 or so characters to the Where field, in order to create a "wrapping" effect without visibly altering the text.  The issue with this is that if you copy/paste text out of the Where field, it will still contain the zero width space character mixed into all of the text.  While this isn't a problem when the "where" is a Google Hangouts video link (because they replace the where field with their special widget), and it's not much of a problem if the where field contains a physical address (because Google provides a "map" link to map to the location), it becomes a problem if you want to store information in the where field that doesn't fit into Google's way of thinking.

Say you want to store a Go To Meeting URL, WebEx URL, BlueJeans.com URL, or perhaps a Room.co URL in the Where field. First, the link isn't made clickable.  Second, if you copy the URL and paste it into the Chrome "omnibar", the zero width space is pasted right along with the rest of the URL.  Not only that, the zero width space is converted to a valid escaped URL code for the zero width space.  You would notice this as % encoded characters in the URL - except Chrome autoconverts % encoded values into their appropriate utf-8 character in the URL bar to support multi-lingual URLs and UTF-8 characters in searches via the "omnibar".  So, you think you pasted the clean url, but the zero width spaces remain, and the various meeting services report the URL to be invalid, and you can't join your meeting.

This extension fixes both of these issues by first removing the erroneously used zero with space character and then finding and making clickable any http link in the where field.

Source code can be found here: http://github.com/jonathanfalkner/gcal_clickable                    

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

Όνομα Google Calendar Clickable Links in Popups Google Calendar Clickable Links in Popups
ID mggaioldbhcfkdpgaghljijnkcgldgob
Επίσημο URL https://chrome.google.com/webstore/detail/google-calendar-clickable/mggaioldbhcfkdpgaghljijnkcgldgob
Περιγραφή Fixes the issue where links in Google Calendar's popups aren't clickable.
Μέγεθος Αρχείου 13.4 KB
Αριθμός Εγκαταστάσεων 581
Τρέχουσα Έκδοση 1
Τελευταία Ενημέρωση 2016-04-09
Ημερομηνία Δημοσίευσης 2016-04-09
Αξιολόγηση 4.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής http://jonfalkner.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου http://jonfalkner.com/extensions/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "clickable_where.user.js"
            ],
            "matches": [
                "*:\/\/*.calendar.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "converted_from_user_script": true,
    "description": "Fixes the issue where links in Google Calendar's popups aren't clickable.",
    "name": "Google Calendar Clickable Links in Popups",
    "version": "1",
    "icons": {
        "16": "16x16.png",
        "24": "24x24.png",
        "48": "48x48.png",
        "64": "64x64.png",
        "128": "128x128.png"
    }
}