LinkBreaker

Break those pesky links!

什麼是LinkBreaker?

LinkBreaker是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Break those pesky links!”。

擴展截圖

screenshot

下載LinkBreaker擴展crx文件

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

擴展使用說明

                        Getting an itch for a good game of brick breaker, but don't want to leave your current web page? Have no fear!

LinkBreaker takes the first 50 items with links on your current page and turns them into colourful bricks for your breaking pleasure. It leaves the contents of these links within the blocks so you can have the enjoyment of breaking the content of the page you're currently on. Simply start the game by clicking on the icon, and end it by pressing the `esc` key. 


LinkBreaker was a project made at YHack 2015, for a challenge of creating something under 4k. We used minified code and other methods of space saving for the submission, but the published version is a bit larger for numerous reasons. For more information, check out our devpost page: http://devpost.com/software/linkbreaker                    

擴展基本資訊

名稱 LinkBreaker LinkBreaker
ID fabffkickmpmbkgikblicljlpnghknjd
官方網址 https://chromewebstore.google.com/detail/linkbreaker/fabffkickmpmbkgikblicljlpnghknjd
簡介 Break those pesky links!
檔案大小 43.94 KB
安裝次數 48
目前版本 1.0.2
更新時間 2015-11-16
上架時間 2015-11-16
評分 5.00/5 共 2 次評分
開發者 Unknown
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkBreaker",
    "version": "1.0.2",
    "description": "Break those pesky links!",
    "browser_action": {
        "default_icon": "images\/logo-48.png",
        "default_title": "LinkBreaker"
    },
    "icons": {
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "author": "Daniel and Graham",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}