Kitty Replace
This extension will replace animated gifs on a webpage with images of kittens.
Kitty Replaceคืออะไร?
Kitty Replace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension will replace animated gifs on a webpage with images of kittens."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kitty Replace
ดาวน์โหลดไฟล์ส่วนขยาย Kitty Replace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Animated GIFs are great. On most pages on the internet, animated gifs are the perfect supplement to the material they are paired with. Writers will add these moving pictures to illustrate emotion, showcase a product feature, or add comic relief. And they are everywhere. But most of the time, I hate them. When you are busy concentrating on the material at hand, moving pictures, especially ones not in your direct focus, are super distracting. Kitty Replace sets to suppress these unwanted peripheral vision hi-jackers. Simply hit the icon and all animated GIFs will be replaced with adorable kittens. ------------ FAQs *I changed my mind. How do I see the animated gifs again? Toggling doesn't currently work right now (maybe later). For now, just refresh your page! *Does this help with load times? Those gifs are so dang slow. Not at all. This extension only works after all resources have been loaded onto a page. ------------ Technical Information There's not much going on here. The extension makes use of Mark James' PlaceKitten (https://placekitten.com/) It uses a quick javascript inspection of the DOM for any files with the .gif extension. It then asks what the height and width of are of that image. Lastly it uses this metadata to make a request for the perfectly sized kitten image. Viola. Author & Code: https://github.com/carsonjones/KittyReplace
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | efagjelcmficpebcblkhnbelkbkbngpj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/kitty-replace/efagjelcmficpebcblkhnbelkbkbngpj |
คำอธิบาย | This extension will replace animated gifs on a webpage with images of kittens. |
ขนาดไฟล์ | 8.35 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2015-12-01 |
วันที่เผยแพร่ | 2015-11-30 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Kitty Replace", "description": "This extension will replace animated gifs on a webpage with images of kittens.", "version": "0.1.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Replace GIFs", "default_icon": "icon.png" }, "permissions": [ "activeTab" ], "manifest_version": 2 } |