Stray Kitty

A browser kitty toy

Stray Kittyคืออะไร?

Stray Kitty เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ggxian และคุณลักษณะหลักของมันคือ "A browser kitty toy"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stray Kitty

ดาวน์โหลดไฟล์ส่วนขยาย Stray Kitty ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A cat toy

A little poem:

sheep.exe
I am not a free

Usage:

Click on the add-on button and select from one of the cats to put it into a tab. The eraser button clears all of the cats.

New in 1.1.0

- Added slider to set the size of the kitties
- Added a sandbox mode when Stray Kitty can't start on a page
- Performance: Make less canvas draw calls
- Fixed issue where cats can get stuck in the ground
- Fixed choppy performance in some cases
- Removed FPS setting; now uses the best framerate available
- Removed storage permission as it is no longer in use
- Remove unused large base 64 string
- Fixed issue with screen not clearing in some cases

New in 1.0.4

- Redesigned pop-up UI with the new ability to choose which cat you want
- Fix an issue where the addon would fail if the pop-up document is in interactive state
- Fix an issue with framerate and incorrect timings
- Gray out the icon when it cannot be used in a page
- Remove an unused permission

New in 1.0.3:

- Added a setting to customize the frames per second
- Optimization: does not start the loop until the first kitty is spawned
- Fixed a bug where the popup would interact with the wrong window if more than one window was open
- Added an note in the popup for pages where the addon will not work (such as about: pages)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Stray Kitty Stray Kitty
ID pdiefgmeejbkamgippdjdchpgkdnelbl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stray-kitty/pdiefgmeejbkamgippdjdchpgkdnelbl
คำอธิบาย A browser kitty toy
ขนาดไฟล์ 38.06 KB
จำนวนการติดตั้ง 72,194
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2021-09-13
วันที่เผยแพร่ 2019-01-24
คะแนน 3.87/5 รวมทั้งหมด 63 คะแนน
ผู้พัฒนา ggxian
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/xianbaum/straykitty
URL หน้าช่วยเหลือ https://github.com/xianbaum/straykitty/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stray Kitty",
    "description": "A browser kitty toy",
    "version": "1.1.0",
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "straykitty-webextension.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webNavigation"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{2fbfe101-aa36-4cd9-98cc-0c2a191f8b47}"
        }
    },
    "web_accessible_resources": [
        "kitties.png"
    ]
}