Simple Paste Extension

Allows you to copy and paste customizable phrases!

什麼是Simple Paste Extension?

Simple Paste Extension是由Simple Paste Extension開發的Chrome擴展程式,該擴展的主要功能是“Allows you to copy and paste customizable phrases!”。

擴展截圖

screenshot

下載Simple Paste Extension擴展crx文件

下載Simple Paste Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The Simple Paste Chrome Extension allows you to paste anything through your keyboard! Once you open your popup and press a keybind, the phrase will automatically copy and close the popup! If you want, you can customize the defaults (shown in the photo above!) by following the directions below.

Update:
In version 2.2.0, you can now click on the phrase you want copied on the popup, in addition to using your keyboard.

How to use the extension:

1. Customize the phrases (what you want to copy) and the keybind (the button you press to automatically copy the phrase) at 
chrome-extension://jbfmdblhfaookljgkjlcnhfachcfegei/customize.html
2. Press save
3. Press Ctrl + M (this can be changed at chrome://extensions/shortcuts)
4. Press the keybind associated with the phrase you want to copy
5. Paste it wherever you want!

I hope you find this extension useful! Leave a review to help out if the extension was useful! If you have questions, suggestions, or problems go to the 'Support' tab.                    

擴展基本資訊

名稱 Simple Paste Extension Simple Paste Extension
ID jbfmdblhfaookljgkjlcnhfachcfegei
官方網址 https://chromewebstore.google.com/detail/simple-paste-extension/jbfmdblhfaookljgkjlcnhfachcfegei
簡介 Allows you to copy and paste customizable phrases!
檔案大小 108 KB
安裝次數 742
目前版本 2.2.1
更新時間 2021-08-19
上架時間 2020-10-23
評分 5.00/5 共 3 次評分
開發者 Simple Paste Extension
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Paste Extension",
    "version": "2.2.1",
    "description": "Allows you to copy and paste customizable phrases!",
    "browser_action": {
        "default_icon": "SimplePaste128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "SimplePaste16.png",
        "32": "SimplePaste32.png",
        "48": "SimplePaste48.png",
        "128": "SimplePaste128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl + M",
                "mac": "Ctrl + M",
                "chromeos": "Ctrl + M",
                "linux": "Ctrl + M"
            }
        }
    }
}