Personalized Web

Tweak your favorite web pages on the fly! Also a perfect customizable AdBlocker.

Personalized Web là gì?

Personalized Web là một tiện ích mở rộng Chrome được phát triển bởi aaafwd, và tính năng chính của nó là "Tweak your favorite web pages on the fly! Also a perfect customizable AdBlocker.".

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

screenshot

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

Tải xuống các tệp mở rộng Personalized Web 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

                        A powerful tool to personalize web pages on the fly. Can inject custom HTML, JavaScript and CSS to a given web page while it is being loaded by the browser. Very effective as an AdBlocker tool. Can significantly decrease page load time by preventing the browser from loading and rendering unwanted parts of a web page: most of the unwanted HTTP requests will not be even issued to the network! Such AdBlocker solution is very different from those that just hide ads with CSS styles.  

There are "Standard AdBlocker" built-in rules that will be updated regularly. If you just want a general AdBlocker tool, this is for you! Just select the checkbox in the Options tab and you are in!

For those of you who knows a bit about HTML/JS/CSS this tool can let you be a "webmaster" of any web page! To add a new personalization rule, just click on the Options button in the extensions tab (chrome://extensions/). You will find it very easy to use, while having the power of making anything you want with the web!

Share your rule dumps or ask for a help to customize a web page in a dedicated discussion group: http://groups.google.com/group/personalizedweb. See some rule examples here: http://groups.google.com/group/personalizedweb/web/examples, including the "YouTube InFlash AdBlocker" rule.

The fastest browser is even more faster now! Enjoy surfing! :)


DONATION via PayPal: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WH693F53XK5JW


The source code can be found here: https://github.com/aaafwd/personalized_web

Known issues:
- On Linux when the JavaScript is disabled the "Add JavaScript" rule does not work. For more info see http://crbug.com/44906                    

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

Tên Personalized Web Personalized Web
ID plcnnpdmhobdfbponjpedobekiogmbco
URL Chính Thức https://chromewebstore.google.com/detail/personalized-web/plcnnpdmhobdfbponjpedobekiogmbco
Mô tả Tweak your favorite web pages on the fly! Also a perfect customizable AdBlocker.
Kích Thước Tệp 55.96 KB
Số Lần Cài Đặt 6,649
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2018-05-18
Ngày Phát Hành 2018-05-18
Đánh Giá 4.61/5 Tổng số 273 Đánh Giá
Nhà Phát Triển aaafwd
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/aaafwd/personalized_web
URL Trang Trợ Giúp http://groups.google.com/group/personalizedweb
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "2.0",
    "background": {
        "scripts": [
            "common\/webkit_console.js",
            "common\/preferences.js",
            "background\/tabmask.js",
            "background\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "default_locale": "en",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "64": "images\/64x64.png",
        "128": "images\/128x128.png"
    },
    "page_action": {
        "default_icon": "images\/16x16.png",
        "default_title": "__MSG_page_action_title__"
    },
    "web_accessible_resources": [
        "*"
    ],
    "content_scripts": [
        {
            "js": [
                "common\/webkit_console.js",
                "content\/main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}