Bipsync Web Clipper

Save web articles to Bipsync

Τι είναι το Bipsync Web Clipper;

Το Bipsync Web Clipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bipsync Ltd, και η κύρια λειτουργία του είναι "Save web articles to Bipsync".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bipsync Web Clipper

Λήψη αρχείων επέκτασης Bipsync Web Clipper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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:\/\/\/*"
            ]
        }
    ]
}