MarqueeMe

Why did you install this

MarqueeMe là gì?

MarqueeMe là một tiện ích mở rộng Chrome được phát triển bởi ByzantineFailure, và tính năng chính của nó là "Why did you install this".

Tải xuống tệp CRX của tiện ích mở rộng MarqueeMe

Tải xuống các tệp mở rộng MarqueeMe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                      

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MarqueeMe MarqueeMe
ID aijnfcbknkhlklgjdkllkklbbjpdljkb
URL Chính Thức https://chrome.google.com/webstore/detail/marqueeme/aijnfcbknkhlklgjdkllkklbbjpdljkb
Mô tả Why did you install this
Kích Thước Tệp 39.64 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2014-11-07
Ngày Phát Hành 2014-11-07
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển ByzantineFailure
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}