PokeGone - Gotta block 'em all

Remove Pokemon from the Internet!

Τι είναι το PokeGone - Gotta block 'em all;

Το PokeGone - Gotta block 'em all είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jamie Farrelly, και η κύρια λειτουργία του είναι "Remove Pokemon from the Internet!".

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

screenshot

Λήψη αρχείου CRX της επέκτασης PokeGone - Gotta block 'em all

Λήψη αρχείων επέκτασης PokeGone - Gotta block 'em all σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Sick and tired of hearing about Pokemon? PokeGone will take care of that! This extension will stop your eyes from seeing grown adults raving on about Pokemon - simple as.

Remove all traces of Pokemon from the internet with one simple extension!

Catching all Pokemon is tough work, but if we don't catch all the Pokemon try going in to the extension options (click on the Pokeball) and change how tough you want to be on those pesky Pokemon! Choose from mild, aggressive and vindictive. The choice is yours!

Based on -  https://github.com/RobSpectre/Trump-Filter

Code: https://github.com/JamieFarrelly/PokeGone

Modified by @Jamie_Farrelly (twitter)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PokeGone - Gotta block 'em all PokeGone - Gotta block 'em all
ID jionadcjdpdikjmgfohlohnclocfaija
Επίσημο URL https://chrome.google.com/webstore/detail/pokegone-gotta-block-em-a/jionadcjdpdikjmgfohlohnclocfaija
Περιγραφή Remove Pokemon from the Internet!
Μέγεθος Αρχείου 238 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2016-08-05
Ημερομηνία Δημοσίευσης 2016-08-05
Αξιολόγηση 3.11/5 Συνολικά 90 Αξιολογήσεις
Προγραμματιστής Jamie Farrelly
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/JamieFarrelly/PokeGone
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PokeGone - Gotta block 'em all",
    "version": "1.2",
    "description": "Remove Pokemon from the Internet!",
    "page_action": {
        "default_icon": "images\/icon-19x19.png",
        "default_title": "Warning: Pokemon are on this page!"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*github.com*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/filter.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "19": "images\/icon-19x19.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png",
        "130": "images\/icon-130x130.png",
        "550": "images\/icon-550x550.png"
    },
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}