MarqueeMe

Why did you install this

Cos'è MarqueeMe?

MarqueeMe è un'estensione di Chrome sviluppata da ByzantineFailure, e la sua funzione principale è "Why did you install this".

Scarica il file CRX dell'estensione MarqueeMe

Scarica i file di estensione MarqueeMe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Adds a "Marquee Me!" option to the right click menu on any page.  Selecting it will wrap the entire page body in  tags, styling and layout be damned.

Now includes (configurable in options):

True 90's Mode:  Pretend you're REALLY in the 90's with a blinking Marquee!
Malicious Mode:  Remove the context menu item and automatically Marquee the page on load 15% of the time!

THERE IS A KNOWN BUG WHERE ENABLING THEN DISABLING MALICIOUS MODE CAUSES THE CONTEXT MENU BUTTON NOT TO WORK -- this is easy to fix, just disable then re-enable the extension

This is probably the dumbest thing I've ever written, and I once wrote a hash table in C with a hard-coded random hashing algorithm.

Source here, I guess
https://github.com/ByzantineFailure/MarqueeMe/                      

Informazioni di Base sull'Estensione

Nome MarqueeMe MarqueeMe
ID aijnfcbknkhlklgjdkllkklbbjpdljkb
URL Ufficiale https://chrome.google.com/webstore/detail/marqueeme/aijnfcbknkhlklgjdkllkklbbjpdljkb
Descrizione Why did you install this
Dimensione del File 39.64 KB
Conteggio Installazioni 18
Versione Corrente 2.0
Ultimo Aggiornamento 2014-11-07
Data di Pubblicazione 2014-11-07
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore ByzantineFailure
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "MarqueeMe.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "onPage.js"
            ]
        }
    ],
    "manifest_version": 2,
    "name": "MarqueeMe",
    "description": "Why did you install this",
    "version": "2.0",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "real-world.css"
    ],
    "browser_action": {
        "default_title": "Why did you install this"
    },
    "options_page": "options.html"
}