Colorfy

Change colors of elements on a web page easily.

Colorfy là gì?

Colorfy là một tiện ích mở rộng Chrome được phát triển bởi colorfy.application, và tính năng chính của nó là "Change colors of elements on a web page easily.".

Ả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 Colorfy

Tải xuống các tệp mở rộng Colorfy 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 extension can be used to easily change background color and text of any element on a web page. You can do this by doing the following: 
-Click on the extension icon in the top right corner of the browser
-Select the element you wish to change
-Select a background and text color
-Click OK and enjoy :)

Changes you make will be saved on your device for each website. 
To remove the change to a particular element, choose the default color for the change you want removed and it will revert the background/text for that element.
If you wish to remove the changes for a particular site you can just right click on it and choose the option with Colorfy logo that says "Remove all changes".
If you wish to remove all changes from all of the websites you can right click on the extension icon in the top right corner of the browser, select options. and on a page that just appeared click on a button that says "CLEAR CHANGES FROM ALL WEBSITES".
I have added advanced options so that people with basic knowledge of HTML and CSS can change elements manually. You can change element by getting it's class or id trough inspect element and then adding that element in advanced changes menu, there you can also delete any element you don't want changed.

In future we plan to add a few different options such as using a texture for the background or an image and adding more gradient colors.
I hope you enjoy using this tool and that it helps you have more fun browsing the internet.                    

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

Tên Colorfy Colorfy
ID nbdflkflpbgpfmnchfpjmobfgaahnbec
URL Chính Thức https://chromewebstore.google.com/detail/colorfy/nbdflkflpbgpfmnchfpjmobfgaahnbec
Mô tả Change colors of elements on a web page easily.
Kích Thước Tệp 1.63 MB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 0.9.3.6
Cập Nhật Lần Cuối 2020-09-18
Ngày Phát Hành 2020-03-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển colorfy.application
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,hr,sr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colorfy",
    "description": "__MSG_description__",
    "version": "0.9.3.6",
    "author": "Nikola Mandi\u0107",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "logo_16.png",
        "32": "logo_32.png",
        "64": "logo_64.png",
        "128": "logo_128.png"
    },
    "web_accessible_resources": [
        "assets\/*",
        "colorfy.css"
    ],
    "browser_action": {
        "default_icon": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "incognito": "spanning",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "backend.js"
            ],
            "css": [
                "colorfy.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "options_page": "options\/options.html"
}