MarqueeMe

Why did you install this

MarqueeMe란 무엇입니까?

MarqueeMe은(는) ByzantineFailure에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Why did you install this"입니다.

MarqueeMe 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}