Skim the clipboard

Clipboard filtering with regular expression

Skim the clipboard là gì?

Skim the clipboard là một tiện ích mở rộng Chrome được phát triển bởi François R., và tính năng chính của nó là "Clipboard filtering with regular expression".

Ả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 Skim the clipboard

Tải xuống các tệp mở rộng Skim the clipboard 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 add-on use  regular expression templates to filter a text when it is pasted or copied.
You may paste & filter when you paste a text modified by a regular expression in a form field in the browser. 
You may copy & filter to copy some text from a web page and want to use it modified by a regular expression in another application.
You may also apply a regular expression modifier to change a text already in the clipcoard. The changed text being kept in the clipboard so that it can be pasted in the address bar for example.

Example 1: Suppose I want to filter only words that are longer then four characters to use in search engine:
Open the Skim the clipboard option page click on Add a row (check box field) and enter the following in the table: 

- set name: >4, 
- set regular expression template: [\w\u00c0-\u010f]{4,}
- Regular expression modifier: gi
- set keep match or substitute: checked
- Keep in clipboard: unchecked
- Shortcut: two

Click on Save all and close the option page.

Close the options, and select and copy a text from the web page you want to search, click in the search engine field, right click and select 
Paste  filtered - >4. Only the words of four charaters or more are paste in the field.
You may also  simply press Ctrl+Shift+B (PC) / Command+Shift+B (Mac) in the form field to paste the modified clipboard content.

Example 2: Suppose I want to paste the host url address (https://dev.opera.com/) in the address bar, using any link location from this site, eg. (https://dev.opera.com/extensions/publishing-guidelines/#create).

Open the Skim the clipboard option page, click on Add a row (text field) and enter the following in the table: 

- set name: host, 
- set regular expression template: (^http.?:\/\/[^\/]+)(.*$)
- Regular expression modifier: gi
- set keep match or substitute: $1
- Keep in clipboard: checked
- Shortcut: one

Click on Save all and close the option page.
Copy a page url from the address bar or on the context menu Copy link Address. Click on the page and right click on Replace in Clipboard > Host. The clipboard content is changed to the host url.Click in the address bar and (regular) paste the modified url that you can paste in the address bar.
You may also  simply press Ctrl+Shift+A (PC) Command+Shift+A (Mac) in the web page to modify the clipboard content.                    

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

Tên Skim the clipboard Skim the clipboard
ID ghkeldbbnhifcchipcddkfdanfpcghfi
URL Chính Thức https://chromewebstore.google.com/detail/skim-the-clipboard/ghkeldbbnhifcchipcddkfdanfpcghfi
Mô tả Clipboard filtering with regular expression
Kích Thước Tệp 31.91 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 0.1.11
Cập Nhật Lần Cuối 2023-03-15
Ngày Phát Hành 2018-02-15
Đánh Giá 2.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển François R.
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ de,en,fr
manifest.json
{
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_icons": {
            "64": "img\/icon-64x64.png",
            "16": "img\/icon-16x16.png",
            "48": "img\/icon-48x48.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_panel_label__",
    "icons": {
        "16": "img\/icon-16x16.png",
        "48": "img\/icon-48x48.png",
        "64": "img\/icon-64x64.png"
    },
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "optional_permissions": [],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "clipboardRead",
        "clipboardWrite"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.11",
    "commands": {
        "one": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma",
                "mac": "Command+Shift+Comma"
            },
            "description": "run shortkey one"
        },
        "two": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period",
                "mac": "Command+Shift+Period"
            },
            "description": "run shortkey two"
        },
        "three": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "run shortkey three"
        },
        "four": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "run shortkey four"
        }
    }
}