MarqueeMe

Why did you install this

MarqueeMeคืออะไร?

MarqueeMe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ByzantineFailure และคุณลักษณะหลักของมันคือ "Why did you install this"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MarqueeMe

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}