Fishy Buttons

Mess up websites with the fishy buttons!

¿Qué es Fishy Buttons?

Fishy Buttons es una extensión de Chrome desarrollada por Fishboe, y su función principal es "Mess up websites with the fishy buttons!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Fishy Buttons

Descarga archivos de extensión Fishy Buttons 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

                        Sometimes you can be bored at work, unfortunately own a chromebook or want to kill some time. Fishy Buttons can help!

Mess up websites and distort objects with the Fishy Buttons. You can make any website amusing! (not guaranteed)

QnA
____________________________
What does the off/on button do next to each fishy button?
Click that to toggle the effect on so that it will load the effect every time you open a webpage. As new things load on the website, the effect is applied to the new content only.

What is Fishy?
Fishy is that cute face you see on the icon. He is a fat floppy fish that wants to help you become amused. Click Fishify to put him in any website.

What do the buttons do?
Fishify - Replaces all images and the background with Fishy.

Fishify Extreme - Make Fishy the background of every element.

Fishify Text - Replaces all words that start with the letter f to the word fish.

Spinfish - Spin images! The slider will adjust the speed.

Earthquake - Violently shakes all the images and text. Click again to pause.

Image Corrupt - Will corrupt all the images on the page. Sometimes it will break the image completely.

Colour Filter - Will make the page extremely saturated.

Rewrite Text - Fetches all the text on the page and uses a markov chain generator to rewrite all the text on the page.

Fishfacts - Changes random paragraphs in a page into a random fish fact.

Jumble Page - Randomises the order of things on a page.
____________________________
Fun Ideas-
Use the fishfacts button and then rewrite text and you will see more weird sentences lol.

Turn on fishify text on someones computer and don't tell them. Watch them get confused over excessive fish words in the page haaaaha.
____________________________

Update 2.5 -
All new design for the buttons.
Fishify text button is now more intelligent, it will keep punctuation and words ending in ed or ers will become fished or fishers. 
Effects will now update when the page loads more content.
Bug fixes and stuff.

Update 2.4 -
Added Jumble Page button.
Rewrote code for "Rewrite Text" button so text stays the same amount of words.

Update 2.3 -
Added Image Corrupt button.
Added Colour Filter button.
Added 40 more fish facts.
Rearranged the buttons.

Update 2.1 -
Rewritten the entire thing because it was terrible.
Optimised the code to work better and do the things in a better way.
Removed the gust of wind because it was stupid.
Fish all text button is now Fishify Text and does something slightly different.
Earthquake pause/play is gone and now you just click the button to pause and play.
Toggle now works perfectly.
Added Fishfacts button.

Update 1.3 - 
Used bootstrap for popup window.
Added toggle buttons to each button that will make that button run automatically. (well it doesn't seem to work as well as it does in the development mode sorry)
Added ability to play earthquake after pausing and improved pause icon.
____________________________

Have fun!                    

Información Básica de la Extensión

Nombre Fishy Buttons Fishy Buttons
ID fadfgclijjcbcccnpgkbapnjbpbbicaa
URL Oficial https://chromewebstore.google.com/detail/fishy-buttons/fadfgclijjcbcccnpgkbapnjbpbbicaa
Descripción Mess up websites with the fishy buttons!
Tamaño del Archivo 1.24 MB
Cantidad de Instalaciones 2,054
Versión Actual 2.5
Última Actualización 2021-08-31
Fecha de Publicación 2020-03-30
Calificación 4.67/5 Total de 9 Calificaciones
Desarrollador Fishboe
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.fishboe.com/pages/#Programs
URL de la Página de Política de Privacidad https://www.fishboe.com/pages
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fishy Buttons",
    "short_name": "Fishy",
    "author": "Fishboe",
    "version": "2.5",
    "description": "Mess up websites with the fishy buttons!",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "fishy.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'sha256-v6kc1XV0xncQIyotoIYFIewFfdgQf7gwxaaMSaDVnjs='; object-src 'self'",
    "icons": {
        "16": "images\/fishycut16.png",
        "32": "images\/fishycut32.png",
        "48": "images\/fishycut48.png",
        "128": "images\/fishycut128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "images\/fishycut16.png",
            "32": "images\/fishycut32.png",
            "48": "images\/fishycut48.png",
            "128": "images\/fishycut128.png"
        },
        "default_title": "Fishy Buttons",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/www.google.*\/search*"
            ],
            "css": [
                "effects.css"
            ],
            "js": [
                "bs\/js\/jquery.min.js",
                "effects.js"
            ],
            "run_at": "document_end"
        }
    ]
}