Synesthesia

Make words colorful

Cos'è Synesthesia?

Synesthesia è un'estensione di Chrome sviluppata da mr.bearengineer, e la sua funzione principale è "Make words colorful".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Synesthesia

Scarica i file di estensione Synesthesia in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Synesthesia Synesthesia
ID phgdmmihahblcebmaidknfcnnjgbblog
URL Ufficiale https://chromewebstore.google.com/detail/synesthesia/phgdmmihahblcebmaidknfcnnjgbblog
Descrizione Make words colorful
Dimensione del File 887 KB
Conteggio Installazioni 361
Versione Corrente 0.1.1
Ultimo Aggiornamento 2019-02-04
Data di Pubblicazione 2019-02-03
Valutazione 3.00/5 Totale 6 Valutazioni
Sviluppatore mr.bearengineer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}