Paste From Context Menu

This extension allows you to save predefined snippets and paste them to text inputs using context menu.

Paste From Context Menu là gì?

Paste From Context Menu là một tiện ích mở rộng Chrome được phát triển bởi coder, và tính năng chính của nó là "This extension allows you to save predefined snippets and paste them to text inputs using context menu.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Paste From Context Menu

Tải xuống các tệp mở rộng Paste From Context Menu 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

                                            

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

Tên Paste From Context Menu Paste From Context Menu
ID ihfogeehoikadinpdoeapemeolcppfjf
URL Chính Thức https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf
Mô tả This extension allows you to save predefined snippets and paste them to text inputs using context menu.
Kích Thước Tệp 20.88 KB
Số Lần Cài Đặt 3,181
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-10-14
Ngày Phát Hành 2016-10-14
Đánh Giá 3.74/5 Tổng số 23 Đánh Giá
Nhà Phát Triển coder
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste From Context Menu",
    "short_name": "pastefromcontextmenu",
    "version": "1.0.1",
    "author": "Coder",
    "description": "This extension allows you to save predefined snippets and paste them to text inputs using context menu.",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Paste From Context Menu",
        "default_icon": "icons\/48x48.png",
        "default_popup1": "popup.html"
    }
}