Synesthesia

Make words colorful

O que é Synesthesia?

Synesthesia é uma extensão do Chrome desenvolvida por mr.bearengineer, e sua principal característica é "Make words colorful".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Synesthesia

Baixe arquivos de extensão Synesthesia no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Synesthesia Synesthesia
ID phgdmmihahblcebmaidknfcnnjgbblog
URL Oficial https://chromewebstore.google.com/detail/synesthesia/phgdmmihahblcebmaidknfcnnjgbblog
Descrição Make words colorful
Tamanho do Arquivo 887 KB
Contagem de Instalações 361
Versão Atual 0.1.1
Última Atualização 2019-02-04
Data de Publicação 2019-02-03
Classificação 3.00/5 Total de 6 Avaliações
Desenvolvedor mr.bearengineer
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}