Paste List

Consecutively paste things

Paste List란 무엇입니까?

Paste List은(는) https://dilanxd.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Consecutively paste things"입니다.

확장 프로그램 스크린샷

screenshot

Paste List 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}