PokeGone - Gotta block 'em all
Remove Pokemon from the Internet!
PokeGone - Gotta block 'em all क्या है?
PokeGone - Gotta block 'em all Jamie Farrelly द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove Pokemon from the Internet!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PokeGone - Gotta block 'em all एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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)
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |