Fishy Buttons

Mess up websites with the fishy buttons!

Wat is Fishy Buttons?

Fishy Buttons is een Chrome-extensie ontwikkeld door Fishboe, en de belangrijkste functie is "Mess up websites with the fishy buttons!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Fishy Buttons

Download Fishy Buttons-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Fishy Buttons Fishy Buttons
ID fadfgclijjcbcccnpgkbapnjbpbbicaa
Officiële URL https://chromewebstore.google.com/detail/fishy-buttons/fadfgclijjcbcccnpgkbapnjbpbbicaa
Beschrijving Mess up websites with the fishy buttons!
Bestandsgrootte 1.24 MB
Aantal Installaties 2,054
Huidige Versie 2.5
Laatst Bijgewerkt 2021-08-31
Publicatiedatum 2020-03-30
Beoordeling 4.67/5 Totaal 9 Beoordelingen
Ontwikkelaar Fishboe
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.fishboe.com/pages/#Programs
URL van de Privacybeleid Pagina https://www.fishboe.com/pages
Ondersteunde Talen 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"
        }
    ]
}