Konami Code Test Discover

Test all websites you visit for a working Konami code.

什麼是Konami Code Test Discover?

Konami Code Test Discover是由Suisseo開發的Chrome擴展程式,該擴展的主要功能是“Test all websites you visit for a working Konami code.”。

擴展截圖

screenshot

下載Konami Code Test Discover擴展crx文件

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

擴展使用說明

                        Discover new Konami code websites as you surf around the web!

This extension will automatically trigger the classic Konami code (up,up,down,down,left,right,left,right,b,a) on every webpage you visit and maybe let you be the first one to discover undiscovered easter eggs (konami codes) as you surf. Try it on sites like Digg.com, vogue.co.uk if you don't know what a konami code is.

Details :
- Triggers the konami code 2 seconds after the webpage is fully loaded
- Set to trigger the konami code only on http & https served pages (doesn't trigger on local files)
- The options page lets you exclude domains on which the konami code should not be triggered.

Confidentiality :
- This extension does only what it says : It triggers the sequence (up,up,down,down,left,right,left,right,b,a), nothing else.

Like this extension : Join us on twitter : @suisseo                    

擴展基本資訊

名稱 Konami Code Test Discover Konami Code Test Discover
ID hdimokbcjdmhakamdmjbgehfalfajaha
官方網址 https://chromewebstore.google.com/detail/konami-code-test-discover/hdimokbcjdmhakamdmjbgehfalfajaha
簡介 Test all websites you visit for a working Konami code.
檔案大小 7.37 KB
安裝次數 508
目前版本 1.7
更新時間 2014-04-21
上架時間 2014-04-21
評分 4.14/5 共 14 次評分
開發者 Suisseo
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Konami Code Test Discover",
    "short_name": "KonamiCodeDT",
    "description": "Test all websites you visit for a working Konami code.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.7",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "konami.js"
    ]
}