Begone

Define your prohibited words/pictures list. Any page element, post or article containing one of these words it's censored.

Begone là gì?

Begone là một tiện ích mở rộng Chrome được phát triển bởi paolo, và tính năng chính của nó là "Define your prohibited words/pictures list. Any page element, post or article containing one of these words it's censored.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Begone

Tải xuống các tệp mở rộng Begone dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This plugin filters out any page element containing text or pictures that you don't want to see. Because everyone on the internet not only keeps posting about things you are uninterested in, but does it so repeatedly that sometimes it feels like being harassed. Remove from your browsing experience, from your favorite social network or blog all the articles about matters and subjects you're absolutely done with, stop visualizing these things all day long!
It works by scanning html attributes, css styles names, image filenames and when there's a match with one of the words you've added to the list that element is removed or blurred, depending on your preferences. Obviously this scanning came at the cost of a slightly slower page loading , but as long you don't utilize a really obsolete computer this really won't be an issue.

There's an all new "artificial intelligence" tab for images only: you can pick the categories of things you want to remove from your browsing experience and when the image detection does trigger, the image gets blurred. Due to the experimental nature of this new A.I. feature and its limitations, categories selected in this tab can misfire from time to time, but overall it does a reasonably decent job.
A more clever implementation of a.i. image detection it's in the works.

No ads, no fees, no in-app purchases, no tricks. I made this extension for me and my buddies, if you want to utilize it as well be my guest but don't expect too much from any complaint.
On the other hand, constructive suggestions are gladly welcome.

changelog:
1.10:
- preferences initialization and persistence has a better syncronization system
- for a page element to match it's now necessary an entire-word match. E.g.: adding the word "cat" before also censored "categories", "locality" etc.... Now only matches "cat".
- added a specific toggle to switch on and off the AI detection
- added a short description to the AI tab
- word minimum length lowered to 3 characters                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Begone Begone
ID mmenhhmlobbeemaigfgkkaaahgcjahhh
URL Chính Thức https://chrome.google.com/webstore/detail/begone/mmenhhmlobbeemaigfgkkaaahgcjahhh
Mô tả Define your prohibited words/pictures list. Any page element, post or article containing one of these words it's censored.
Kích Thước Tệp 2.57 MB
Số Lần Cài Đặt 287
Phiên Bản Hiện Tại 1.10
Cập Nhật Lần Cuối 2019-10-07
Ngày Phát Hành 2019-10-07
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển paolo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Begone",
    "version": "1.10",
    "description": "Define your prohibited words\/pictures list. Any page element, post or article containing one of these words it's censored.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "styles.css"
            ],
            "js": [
                "common.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "common.js",
            "background.js",
            "libs\/ml\/tf.min.js",
            "libs\/ml\/coco-ssd.js",
            "libs\/ml\/mobilenet.min.js"
        ],
        "content_security_policy": "script-src 'self' 'unsafe-inline'; object-src 'self'"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "notifications",
        "alarms"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "diagonal.jpg",
        "*.ttf"
    ]
}