Synesthesia

Make words colorful

Vad är Synesthesia?

Synesthesia är en Chrome-tillägg utvecklad av mr.bearengineer, och dess huvudfunktion är "Make words colorful".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Synesthesia-förlängningens CRX-fil

Ladda ner Synesthesia-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Synesthesia Synesthesia
ID phgdmmihahblcebmaidknfcnnjgbblog
Officiell webbadress https://chromewebstore.google.com/detail/synesthesia/phgdmmihahblcebmaidknfcnnjgbblog
Beskrivning Make words colorful
Filstorlek 887 KB
Antal Installationer 361
Aktuell Version 0.1.1
Senast Uppdaterad 2019-02-04
Publiceringsdatum 2019-02-03
Betyg 3.00/5 Totalt 6 Betyg
Utvecklare mr.bearengineer
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}