Paste List

Consecutively paste things

什麼是Paste List?

Paste List是由https://dilanxd.com開發的Chrome擴展程式,該擴展的主要功能是“Consecutively paste things”。

擴展截圖

screenshot

下載Paste List擴展crx文件

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

擴展使用說明

                        Take each "copy" out of "copy paste copy paste copy paste copy paste". Paste List is a browser extension for Google Chrome that simplifies repeated pasting. Create lists of text, then head over to a webpage and activate one. As you paste an item somewhere, the next one will automatically be copied to your clipboard.

- Easily manage multiple lists of text (add items, move items, and delete items as needed)
- Activate a list using the extension popup (pin the extension to make it easy to access)
- Press 'Start' on the overlay that appears on the page and watch how the overlay updates with your clipboard as you paste
- 'Skip' any list item when pasting or 'Stop' it completely (it also stops if you make it to the end of the list or if you activate another list)
- Use optional keyboard shortcuts when editing lists ('ctl/cmd + enter' to add a new item, 'ctl/cmd + s' to save the list)                    

擴展基本資訊

名稱 Paste List Paste List
ID nolfbfhaicjldjodgafpaheehkolchdf
官方網址 https://chromewebstore.google.com/detail/paste-list/nolfbfhaicjldjodgafpaheehkolchdf
簡介 Consecutively paste things
檔案大小 173 KB
安裝次數 80
目前版本 0.2.0
更新時間 2022-09-03
上架時間 2022-08-24
開發者 https://dilanxd.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.dilanxd.com
隱私政策頁面URL https://www.dilanxd.com/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paste List",
    "description": "Consecutively paste things",
    "version": "0.2.0",
    "author": "Dilan Nair",
    "manifest_version": 3,
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "webcomponents-bundle.js",
                "element.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    }
}