Bipsync Web Clipper

Save web articles to Bipsync

Bipsync Web Clipper란 무엇입니까?

Bipsync Web Clipper은(는) Bipsync Ltd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save web articles to Bipsync"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Save any web page as a Bipsync note at the click of a button. Choose who the note is shared with and tag it to a label, company, contact or anything else - all without leaving the page you’re reading or returning to the Bipsync web app.                    

확장 프로그램 기본 정보

이름 Bipsync Web Clipper Bipsync Web Clipper
ID bolklfeganamejdcfaoigjpcmhkhpckm
공식 URL https://chromewebstore.google.com/detail/bipsync-web-clipper/bolklfeganamejdcfaoigjpcmhkhpckm
설명 Save web articles to Bipsync
파일 크기 169 KB
설치 횟수 440
현재 버전 0.1.10
최근 업데이트 2023-09-22
출시 날짜 2019-10-07
평점 5.00/5 총 1 개의 평점
개발자 Bipsync Ltd
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.bipsync.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bipsync Web Clipper",
    "version": "0.1.10",
    "manifest_version": 3,
    "description": "Save web articles to Bipsync",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "bipsync browser extension",
        "default_popup": "",
        "scripts": [
            "bower_components\/jquery\/dist\/jquery.min.js",
            "scripts\/popup.js"
        ],
        "run_at": "document_end"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "scripts\/utils.js",
                "scripts\/vendor\/readability.js",
                "scripts\/vendor\/tokeninput.js",
                "scripts\/bookmarklet.js",
                "scripts\/contentscript.js",
                "bower_components\/html2canvas\/build\/html2canvas.min.js"
            ],
            "css": [
                "styles\/common.css",
                "styles\/clipper.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage",
        "identity",
        "notifications",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*.bipsync.com\/",
        "https:\/\/*.bipsync.com\/"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+Shift+B",
                "mac": "Alt+Shift+B",
                "chromeos": "Alt+Shift+B",
                "linux": "Alt+Shift+B"
            }
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "fonts\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ]
}