Synesthesia

Make words colorful

Τι είναι το Synesthesia;

Το Synesthesia είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mr.bearengineer, και η κύρια λειτουργία του είναι "Make words colorful".

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

screenshot
screenshot
screenshot

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

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

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

                        The idea is to help induce synesthesia between words and colors, so that when you see a word you think about it in a particular color. Not only has this been proven to increase verbal memory but now just the visual of a word has a color connected to it. With reading as an essential daily function imagine making your day just a bit more colorful :) 
I also wrote a medium article on synesthesia and why I built this (https://medium.com/@ilianherzi/inducing-synesthesia-4ead16f37a1b).
Couple of things about version 0.1.0 of the extension:

0. The current version is best used on webpages that don't update or change with a lot of text (so when reading).
1. For dynamic pages that update the color changes don't persist, so for example in gmail colored words go back to black and white.
2. On input text the color of the words don't change (so typing an email, writing a post, searching on google)

These difficulties with the extension will be fixed in version 0.2.0!                    

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

Όνομα Synesthesia Synesthesia
ID phgdmmihahblcebmaidknfcnnjgbblog
Επίσημο URL https://chromewebstore.google.com/detail/synesthesia/phgdmmihahblcebmaidknfcnnjgbblog
Περιγραφή Make words colorful
Μέγεθος Αρχείου 887 KB
Αριθμός Εγκαταστάσεων 361
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2019-02-04
Ημερομηνία Δημοσίευσης 2019-02-03
Αξιολόγηση 3.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής mr.bearengineer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Synesthesia",
    "author": "ilian h. herzi",
    "version": "0.1.1",
    "description": "Make words colorful",
    "content_scripts": [
        {
            "js": [
                "colorify.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": ".\/images\/colortree16.png",
        "48": ".\/images\/colortree48.png",
        "128": ".\/images\/colortree128.png"
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Colorify",
        "default_icon": ".\/images\/colortree128.png"
    },
    "background": {
        "scripts": [
            ".\/static\/js\/background.94a2a6ac.chunk.js"
        ]
    },
    "content_security_policy": "default-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' 'sha256-47DEQpj8HBSa+\/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 'sha256-d8+FRLATLC2M5M7tg4DHE7TNYGW0kr6ijwsDc7+G6DI=' 'sha256-47DEQpj8HBSa+\/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 'sha256-LA4KTjHIvt\/e0fK4wBIK0x4Rx0vUv3\/rVZ6n+vpT+GM='; script-src 'self'  'sha256-BzXhdGQonubJP7rkBu5Q1QUPqprfMlZO3QKkTK6itB4=' 'sha256-47DEQpj8HBSa+\/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' 'sha256-Wf9MlqLyvQhtxTTzbiQ3mMqkhAfzVF+lXvf3NRg\/duw=' 'sha256-BTykR5EC7eIruGLX2ZnoTurMSmDsG\/dmhaEuYfkZ0Lk=' https:\/\/www.google-analytics.com; img-src 'self' data:; object-src 'self';",
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ]
}