Extract Data

Extract data on opened tabs and copy it to clipboard. (as JSON, XLS or with textual format)

Extract Data là gì?

Extract Data là một tiện ích mở rộng Chrome được phát triển bởi pdulvp, và tính năng chính của nó là "Extract data on opened tabs and copy it to clipboard. (as JSON, XLS or with textual format)".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Extract Data 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 allows to extract data on opened tabs and copy it to clipboard. (as JSON, XLS or with textual format)

Just right click on an interesting element in a page. (for instance, a bank account balance, current played music) and click on the addon added menu.

Each time you will visit the site again, the data will be automatically extracted and available on the browser toolbar, directly accessible for a copy to the clipboard.

- You can also create compound data, for instance by selecting several accounts visible in the same page, then by only one click on the toolbar, you will copy all item in once click.

- By using regular expression you can retrieve a data from many pages on the same site

An How-To is available on https://github.com/pdulvp/extract-data                    

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

Tên Extract Data Extract Data
ID dgojclpdbgnpjclhimcldkapkgnmjbcb
URL Chính Thức https://chromewebstore.google.com/detail/extract-data/dgojclpdbgnpjclhimcldkapkgnmjbcb
Mô tả Extract data on opened tabs and copy it to clipboard. (as JSON, XLS or with textual format)
Kích Thước Tệp 72.84 KB
Số Lần Cài Đặt 255
Phiên Bản Hiện Tại 1.7.0
Cập Nhật Lần Cuối 2021-04-02
Ngày Phát Hành 2020-06-01
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển pdulvp
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pdulvp/extract-data
URL Trang Trợ Giúp https://github.com/pdulvp/extract-data
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "author": "[email protected]",
    "version": "1.7.0",
    "homepage_url": "https:\/\/github.com\/pdulvp\/extract-data",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "20": "icons\/icon-20.png",
        "25": "icons\/icon-25.png",
        "30": "icons\/icon-30.png",
        "32": "icons\/icon-32.png",
        "40": "icons\/icon-40.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "contextMenus",
        "tabs"
    ],
    "default_locale": "en",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon-16.png",
            "20": "icons\/icon-20.png",
            "25": "icons\/icon-25.png",
            "30": "icons\/icon-30.png",
            "32": "icons\/icon-32.png",
            "40": "icons\/icon-40.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "128": "icons\/icon-128.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "ui\/popup.html",
        "theme_icons": [
            {
                "light": "icons\/icon-dark-16.png",
                "dark": "icons\/icon-16.png",
                "size": 16
            },
            {
                "light": "icons\/icon-dark-20.png",
                "dark": "icons\/icon-20.png",
                "size": 20
            },
            {
                "light": "icons\/icon-dark-25.png",
                "dark": "icons\/icon-25.png",
                "size": 25
            },
            {
                "light": "icons\/icon-dark-30.png",
                "dark": "icons\/icon-30.png",
                "size": 30
            },
            {
                "light": "icons\/icon-dark-32.png",
                "dark": "icons\/icon-32.png",
                "size": 32
            },
            {
                "light": "icons\/icon-dark-40.png",
                "dark": "icons\/icon-40.png",
                "size": 40
            },
            {
                "light": "icons\/icon-dark-48.png",
                "dark": "icons\/icon-48.png",
                "size": 48
            },
            {
                "light": "icons\/icon-dark-64.png",
                "dark": "icons\/icon-64.png",
                "size": 64
            },
            {
                "light": "icons\/icon-dark-128.png",
                "dark": "icons\/icon-128.png",
                "size": 128
            }
        ]
    },
    "background": {
        "scripts": [
            "ui\/compat.js",
            "ui\/common.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "ui\/compat.js",
                "ui\/common.js",
                "content_scripts\/content-script.js"
            ]
        }
    ]
}