Fishy Buttons
Mess up websites with the fishy buttons!
Fishy Buttons là gì?
Fishy Buttons là một tiện ích mở rộng Chrome được phát triển bởi Fishboe, và tính năng chính của nó là "Mess up websites with the fishy buttons!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fishy Buttons
Tải xuống các tệp mở rộng Fishy Buttons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fishy Buttons |
ID | fadfgclijjcbcccnpgkbapnjbpbbicaa |
URL Chính Thức | https://chromewebstore.google.com/detail/fishy-buttons/fadfgclijjcbcccnpgkbapnjbpbbicaa |
Mô tả | Mess up websites with the fishy buttons! |
Kích Thước Tệp | 1.24 MB |
Số Lần Cài Đặt | 2,054 |
Phiên Bản Hiện Tại | 2.5 |
Cập Nhật Lần Cuối | 2021-08-31 |
Ngày Phát Hành | 2020-03-30 |
Đánh Giá | 4.67/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Fishboe |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.fishboe.com/pages/#Programs |
URL Trang Chính Sách Bảo Mật | https://www.fishboe.com/pages |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |