LinkBreaker

Break those pesky links!

Τι είναι το LinkBreaker;

Το LinkBreaker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Break those pesky links!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης LinkBreaker

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
    ]
}