Synesthesia

Make words colorful

¿Qué es Synesthesia?

Synesthesia es una extensión de Chrome desarrollada por mr.bearengineer, y su función principal es "Make words colorful".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Synesthesia

Descarga archivos de extensión Synesthesia en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Synesthesia Synesthesia
ID phgdmmihahblcebmaidknfcnnjgbblog
URL Oficial https://chromewebstore.google.com/detail/synesthesia/phgdmmihahblcebmaidknfcnnjgbblog
Descripción Make words colorful
Tamaño del Archivo 887 KB
Cantidad de Instalaciones 361
Versión Actual 0.1.1
Última Actualización 2019-02-04
Fecha de Publicación 2019-02-03
Calificación 3.00/5 Total de 6 Calificaciones
Desarrollador mr.bearengineer
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}