InstaSynchP CSSLoader

Plugin to load and unload CSS urls

Per 21-02-2015. Zie de nieuwste versie.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

// ==UserScript==
// @name        InstaSynchP CSSLoader
// @namespace   InstaSynchP
// @description Plugin to load and unload CSS urls

// @version     1.0.4
// @author      Zod-
// @source      https://github.com/Zod-/InstaSynchP-CSSLoader
// @license     MIT

// @include     http://*.instasynch.com/*
// @include     http://instasynch.com/*
// @include     http://*.instasync.com/*
// @include     http://instasync.com/*
// @grant       none
// @run-at      document-start

// @require     https://greasyfork.org/scripts/5647-instasynchp-library/code/InstaSynchP%20Library.js
// ==/UserScript==

function CSSLoader(version) {
    "use strict";
    this.version = version;
    this.name = 'InstaSynchP CSSLoader';
    this.styles = {};
}

CSSLoader.prototype.executeOnceCore = function () {
    "use strict";
    var th = this;
    window.cssLoader = (function () {

        return {
            'add': function (style) {
                //set the id as the name if it didn't get set
                if (!style.id) {
                    style.id = style.name;
                }

                //save the style
                th.styles[style.name] = style;

                //load it
                if (style.autoload) {
                    cssLoader.load(style.name);
                }
            },
            'load': function (styleName) {
                var style = th.styles[styleName],
                    id = '#{0}'.format(style.id);
                $(id).remove();

                $('head').append(
                    $('<link>', {
                        'rel': 'stylesheet',
                        'type': 'text/css',
                        'id': style.id,
                        'href': style.url
                    }).on('load', function () {
                        var ref = this;
                        //fire event after the CSS has been loaded
                        setTimeout(function () {
                            events.fire('CSSLoad[{0}]'.format($(ref).attr('id')));
                        }, 1000);
                    })
                );
                //if the is nothing to load fire the event directly
                if (style.url === '') {
                    events.fire('CSSLoad[{0}]'.format(style.id));
                }
            }
        };
    }());
};

window.plugins = window.plugins || {};
window.plugins.cssLoader = new CSSLoader('1.0.4');