Weje Web Clipper

Use Web Clipper to save text and images to Weje

Weje Web Clipper란 무엇입니까?

Weje Web Clipper은(는) Weje에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Web Clipper to save text and images to Weje"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Weje Web Clipper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Browse web sites and save important information into Weje Online Whiteboards easily. 
Capture ideas and inspiration for moodboards! Clip any text or images, grab links and emails; and organize any type of content to presentations, bookmarks, PDFs or future websites. 

Clip web pages in one click, tag, collaborate and share.

See how Weje extension clips data on the online whiteboard link below: 
https://app.weje.io/b/-MyHgGlvvtwerK-Nl8OT/6LBKQ1wJWgeuN3iDyH2IYzpvoA73

MAIN FEATURES OF WEJE WEB CLIPPER

✅ Capture Web page selected texts
✅ Clip and save images from web sites
✅ Save video and music
✅ Save emails from Gmail, Yahoo or Hotmail to Weje Ideas
✅ Export web pages to online white boards
✅ Add notes to any saved web pages, texts and pics
✅ Integrate with Miro, Notion, Milanote, Figjam, Jamboard and Padlet

WHAT IS WEJE 

Weje is an online whiteboard web service for the business collaboration and personal use. 
Collect anything from different sources with Weje, store, organize and visualize, and then share presentations on the public sites.

Feel free to contact us by email [email protected] in case of any questions or comments.

Create a free Weje account at https://weje.io/ 🧡                    

확장 프로그램 기본 정보

이름 Weje Web Clipper Weje Web Clipper
ID dledbbnicnjmoclimlbnalemkpemkapf
공식 URL https://chromewebstore.google.com/detail/weje-web-clipper/dledbbnicnjmoclimlbnalemkpemkapf
설명 Use Web Clipper to save text and images to Weje
파일 크기 27 KB
설치 횟수 1,223
현재 버전 2.0.0
최근 업데이트 2023-04-12
출시 날짜 2022-03-22
평점 4.88/5 총 32 개의 평점
개발자 Weje
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://weje.io
도움말 페이지 URL https://app.weje.io/b/-MyHgGlvvtwerK-Nl8OT/6LBKQ1wJWgeuN3iDyH2IYzpvoA73
개인정보 보호 정책 페이지 URL https://weje.io/legal/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Weje Web Clipper",
    "description": "Use Web Clipper to save text and images to Weje",
    "version": "2.0.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "http:\/\/localhost:8080\/*",
                "https:\/\/dev.weje.io\/*",
                "https:\/\/dev.weje.tech\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/app.weje.io\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                "https:\/\/app.weje.io\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Weje",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}