Feeling the Love

Add Falling In Love to any web site

Vad är Feeling the Love?

Feeling the Love är en Chrome-tillägg utvecklad av romkey, och dess huvudfunktion är "Add Falling In Love to any web site".

Tilläggsskärmbilder

screenshot

Ladda ner Feeling the Love-förlängningens CRX-fil

Ladda ner Feeling the Love-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Feeling the Love Feeling the Love
ID mmlkfieplmnnkibbpfdlajgakffakmam
Officiell webbadress https://chrome.google.com/webstore/detail/feeling-the-love/mmlkfieplmnnkibbpfdlajgakffakmam
Beskrivning Add Falling In Love to any web site
Filstorlek 60.37 KB
Antal Installationer 54
Aktuell Version 1.0
Senast Uppdaterad 2013-02-14
Publiceringsdatum 2013-02-14
Betyg 2.40/5 Totalt 5 Betyg
Utvecklare romkey
Betalningssätt free
Tilläggswebbplats https://github.com/romkey/FeelingTheLove
Stödda Språk 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"
            ]
        }
    ]
}