DribbleGrab

Grab palette from dribble in one tap

DribbleGrab là gì?

DribbleGrab là một tiện ích mở rộng Chrome được phát triển bởi https://workofutkarsh.com, và tính năng chính của nó là "Grab palette from dribble in one tap".

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

Tải xuống các tệp mở rộng DribbleGrab 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 simple chrome extension grab palette from any dribble shot and open it in https://coolors.co/                    

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

Tên DribbleGrab DribbleGrab
ID fdppijglimagboifklceednogagekojj
URL Chính Thức https://chromewebstore.google.com/detail/dribblegrab/fdppijglimagboifklceednogagekojj
Mô tả Grab palette from dribble in one tap
Kích Thước Tệp 74.54 KB
Số Lần Cài Đặt 187
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-07-28
Ngày Phát Hành 2020-07-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://workofutkarsh.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DribbleGrab",
    "version": "0.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "description": "Grab palette from dribble in one tap",
    "homepage_url": "http:\/\/workofutkarsh.com",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "DribbleGrab!"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dribbble.com\/*",
                "http:\/\/dribbble.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}