Fishy Buttons

Mess up websites with the fishy buttons!

什麼是Fishy Buttons?

Fishy Buttons是由Fishboe開發的Chrome擴展程式,該擴展的主要功能是“Mess up websites with the fishy buttons!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Fishy Buttons擴展crx文件

下載Fishy Buttons擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Fishy Buttons Fishy Buttons
ID fadfgclijjcbcccnpgkbapnjbpbbicaa
官方網址 https://chromewebstore.google.com/detail/fishy-buttons/fadfgclijjcbcccnpgkbapnjbpbbicaa
簡介 Mess up websites with the fishy buttons!
檔案大小 1.24 MB
安裝次數 2,054
目前版本 2.5
更新時間 2021-08-31
上架時間 2020-03-30
評分 4.67/5 共 9 次評分
開發者 Fishboe
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.fishboe.com/pages/#Programs
隱私政策頁面URL https://www.fishboe.com/pages
支援的語言 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"
        }
    ]
}