Remove Donald Trump from Facebook

Remove Donald Trump from Facebook Homepage

Что такое Remove Donald Trump from Facebook?

Remove Donald Trump from Facebook - это расширение Chrome, разработанное Derek Story, и его основная функция - "Remove Donald Trump from Facebook Homepage".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Remove Donald Trump from Facebook

Скачайте файлы расширений Remove Donald Trump from Facebook в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Like this extension? Donations are appreciated at: 

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KREFNCYGZJCBE

--------------------------
Remove posts on Facebook that mention "Trump". 

A post must contain the text string "trump" in order for the post to be removed. If the post only mentions "Donald", "President", or god forbid, only shows his picture, the post will remain.

Instructions:
It runs in the background, so you won't see an icon for it or anything. If you installed it, its running. If you want to remove it, delete it/disable it from chrome://extensions/

--------------------------

Logo Designed by:
http://rustlerdesigns.com 
https://www.reddit.com/user/cpncjwhitebeard

contact: 
[email protected]
http://derekstory.com                    

Основная информация о расширении

Название Remove Donald Trump from Facebook Remove Donald Trump from Facebook
ID hhokbihnhhfghkbmihlgfcoafhkghdej
Официальный URL https://chromewebstore.google.com/detail/remove-donald-trump-from/hhokbihnhhfghkbmihlgfcoafhkghdej
Описание Remove Donald Trump from Facebook Homepage
Размер файла 965 KB
Количество установок 2,152
Текущая Версия 3
Последнее Обновление 2017-02-26
Дата публикации 2017-02-26
Рейтинг 4.27/5 Всего 148 оценок
Разработчик Derek Story
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Donald Trump from Facebook",
    "description": "Remove Donald Trump from Facebook Homepage",
    "version": "3",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "facebook_filter.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon48.png"
    }
}