Togglific

Do you find web animations distracting? Togglific provides a distraction-free web experience!

ما هو Togglific؟

Togglific هو إضافة Chrome تم تطويرها بواسطة svinkle، والميزة الرئيسية لها هي "Do you find web animations distracting? Togglific provides a distraction-free web experience!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Togglific

قم بتنزيل ملفات الامتداد Togglific بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Do you find web animations distracting? Have difficulty focusing when reading on the web? Wish you could pause background videos? Togglific provides a distraction-free web experience!

Togglific will pause the following animations on click:

• CSS animations (animation and transform properties)
• JavaScript animations (requestAnimationFrame method)
• SVG animations
• jQuery animations
• Animated GIF and WEBP images
• HTML video elements
• Targets same-domain iframe elements for all of the above

Note: depending on how the underlying website was coded, Togglific could cause content to be difficult to read. Encourage web designers and developers to code in a way which supports no-animation states!                    

معلومات أساسية عن التمديد

الاسم Togglific Togglific
ID nonnndpheabjkjjnjondfcfgcmhfbckb
عنوان URL الرسمي https://chromewebstore.google.com/detail/togglific/nonnndpheabjkjjnjondfcfgcmhfbckb
الوصف Do you find web animations distracting? Togglific provides a distraction-free web experience!
حجم الملف 18.15 KB
عدد التثبيتات 48
النسخة الحالية 0.16.0
آخر تحديث 2020-01-06
تاريخ النشر 2020-01-06
تقييم 4.00/5 مجموع تقييمات 3
المطور svinkle
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://svinkle.github.io/togglific/
عنوان صفحة المساعدة https://github.com/svinkle/togglific/blob/master/README.md
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Togglific",
    "author": "Scott Vinkle ",
    "version": "0.16.0",
    "description": "Do you find web animations distracting? Togglific provides a distraction-free web experience!",
    "homepage_url": "https:\/\/togglific.io",
    "icons": {
        "16": "icons\/resume16.png",
        "24": "icons\/resume24.png",
        "32": "icons\/resume32.png",
        "48": "icons\/resume48.png",
        "96": "icons\/resume96.png",
        "128": "icons\/resume128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/resume16.png",
            "24": "icons\/resume24.png",
            "32": "icons\/resume32.png",
            "48": "icons\/resume48.png",
            "96": "icons\/resume96.png",
            "128": "icons\/resume128.png"
        },
        "default_title": "Togglific"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "togglific.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            }
        }
    }
}