Feeling the Love

Add Falling In Love to any web site

Co to jest Feeling the Love?

Feeling the Love to rozszerzenie Chrome opracowane przez romkey, a jego główną funkcją jest „Add Falling In Love to any web site”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Feeling the Love

Pobierz pliki rozszerzeń Feeling the Love w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Add slowly falling hearts to any web site on Valentine's Day.

Injects @rfreebern's Falling-in-Love to any web site. See http://blog.rnf.me/Falling-in-Love/

Ryan's code does all the heavy lifting. This extension merely wraps it up and delivers it.

By default you will only see hearts on Valentine's Day. You can change this on the extension's options page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Feeling the Love Feeling the Love
ID mmlkfieplmnnkibbpfdlajgakffakmam
Oficjalny URL https://chrome.google.com/webstore/detail/feeling-the-love/mmlkfieplmnnkibbpfdlajgakffakmam
Opis Add Falling In Love to any web site
Rozmiar pliku 60.37 KB
Liczba instalacji 54
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-02-14
Data Publikacji 2013-02-14
Ocena 2.40/5 Łącznie 5 Oceny
Deweloper romkey
Typ Płatności free
Strona Rozszerzenia https://github.com/romkey/FeelingTheLove
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feeling the Love",
    "description": "Add Falling In Love to any web site",
    "version": "1.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "js\/hearts.min.js",
        "js\/jquery-1.9.1.min.js",
        "js\/jquery.serialize-hash.js",
        "js\/feelingthelove.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/hearts.min.js",
                "js\/feelingthelove.js"
            ],
            "css": [
                "css\/hearts.min.css"
            ]
        }
    ]
}