MarqueeMe

Why did you install this

什麼是MarqueeMe?

MarqueeMe是由ByzantineFailure開發的Chrome擴展程式,該擴展的主要功能是“Why did you install this”。

下載MarqueeMe擴展crx文件

下載MarqueeMe擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}