MarqueeMe

Why did you install this

MarqueeMe क्या है?

MarqueeMe ByzantineFailure द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Why did you install this"।

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

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

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

                        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/                      

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

नाम MarqueeMe MarqueeMe
ID aijnfcbknkhlklgjdkllkklbbjpdljkb
आधिकारिक URL https://chrome.google.com/webstore/detail/marqueeme/aijnfcbknkhlklgjdkllkklbbjpdljkb
विवरण Why did you install this
फ़ाइल का आकार 39.64 KB
स्थापना संख्या 18
वर्तमान संस्करण 2.0
अंतिम अपडेट 2014-11-07
प्रकाशन तिथि 2014-11-07
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर ByzantineFailure
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}