Giant Floating Baby Head

Enjoy a random Giant Floating Baby Head

Giant Floating Baby Head क्या है?

Giant Floating Baby Head Greg Arnell द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enjoy a random Giant Floating Baby Head"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Giant Floating Baby Head एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The Giant Floating Baby Head extension makes a baby head randomly cross the browser window for any site.
It's a great prank to install on someone's Chrome who's a fan of "Phineas and Ferb." Never heard of it? Check out:
http://phineasandferb.wikia.com/wiki/Giant_Floating_Baby_Head

Want an image other than the Baby Head? Select your own image on the options page. It could be Worf, a Creeper, Donald Trump, etc. The possibilities are endless.

The Floating Baby Head appears at random (every 10-40 minutes after opening a new tab), or according to the settings set on the options page (right click on the app icon and select 'Options' from the menu).
You can also trigger the appearance manually by pressing Ctrl+Shift+F (configurable) on almost any webpage!

Updates:
0.6 - Click the baby head!
0.7 - Supports multiple user-defined image URLs
0.10 - Configurable keyboard shortcut
0.12 - Configure which websites the GFBH should not appear on
0.13 - Bugfixes, usability enhancements

Make sure to check out the options page. More settings and options coming soon!
Please rate and comment! Let me know what options/improvements you'd like to see and let me know if you encounter any bugs.

Permissions:
"Read and change all your data on the websites you visit" - GFBH doesn't read any data from the sites you visit.  This permission just allows GFBH to display on any website.

Note: This extension is not endorsed by or affiliated with "Phineas and Ferb" or "Disney Channel".                    

एक्सटेंशन की मूल जानकारी

नाम Giant Floating Baby Head Giant Floating Baby Head
ID dikflngfkaandpfjpaonobhjjpdbacni
आधिकारिक URL https://chromewebstore.google.com/detail/giant-floating-baby-head/dikflngfkaandpfjpaonobhjjpdbacni
विवरण Enjoy a random Giant Floating Baby Head
फ़ाइल का आकार 103 KB
स्थापना संख्या 558
वर्तमान संस्करण 0.13
अंतिम अपडेट 2022-09-20
प्रकाशन तिथि 2019-01-30
रेटिंग 4.11/5 कुल 38 रेटिंग्स
डेवलपर Greg Arnell
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/arnell/giant-floating-baby-head
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Giant Floating Baby Head",
    "short_name": "GFBH",
    "description": "Enjoy a random Giant Floating Baby Head",
    "version": "0.13",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/css.css"
            ],
            "js": [
                "lib\/jquery-3.1.0-custom.min.js",
                "js\/ChromeStorageHelper.js",
                "js\/RandUtil.js",
                "js\/FloatingImage.js",
                "js\/FavIcon.js",
                "js\/HighScoreDisplay.js",
                "js\/FBH.js",
                "js\/script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/baby_head.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "html\/options.html",
    "commands": {
        "show-baby-head": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Show Giant Floating Baby Head"
        }
    },
    "manifest_version": 3
}