Zuperly Web Clipper

Tiny extension to capture links, images and highlighted text to Zuperly

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

Το Zuperly Web Clipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://zuperly.com, και η κύρια λειτουργία του είναι "Tiny extension to capture links, images and highlighted text to Zuperly".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Learning from the Internet starts with the Zuperly web clipper.
While Zuperly makes sure you retain all that you learn, the first step in your learning journey is to collect all your resources seamlessly. The Zuperly web clipper helps you capture all the resources you need (like links, articles, videos, and more!) while learning from the Internet.
SAVE IT ALL TO A LEARNING SPACE.

Came across a mind-blowing article, video or any other resource? Click the Zuperly icon on the top right of your browser, and save it to your learning space.

CAPTURE IMAGES THAT AID YOUR LEARNING.
21st century learners have gone beyond text-based learning. Save images with the click of a button using the save button that appears on the image.
COPY IMPORTANT TEXT FROM ANY WEBSITE.
Want to save a few lines of text? Just select the text and right-click to save it to Zuperly.

Zuperly web clipper helps you capture any information from any place on the Internet and save it to your Zuperly account, waiting for you to take action. It will prompt you to make notes with context when you’re browsing - because context lost is direction lost.

Resource-saving is made so smooth and easy that it feels like butter.
For more, visit www.zuperly.com                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Zuperly Web Clipper Zuperly Web Clipper
ID lkkdemaneadfkpohljjfcleljejhbogb
Επίσημο URL https://chromewebstore.google.com/detail/zuperly-web-clipper/lkkdemaneadfkpohljjfcleljejhbogb
Περιγραφή Tiny extension to capture links, images and highlighted text to Zuperly
Μέγεθος Αρχείου 1.38 MB
Αριθμός Εγκαταστάσεων 79
Τρέχουσα Έκδοση 1.1.4
Τελευταία Ενημέρωση 2023-01-11
Ημερομηνία Δημοσίευσης 2021-08-02
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://zuperly.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://zuperly.com
Διεύθυνση URL της Σελίδας Βοήθειας https://help.zuperly.com
URL της Σελίδας Πολιτικής Απορρήτου https://zuperly.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Zuperly Web Clipper",
    "version": "1.1.4",
    "description": "Tiny extension to capture links, images and highlighted text to Zuperly",
    "icons": {
        "16": "icon_v2_128x128.png",
        "32": "icon_v2_128x128.png",
        "48": "icon_v2_128x128.png",
        "128": "icon_v2_128x128.png"
    },
    "action": {
        "default_title": "Zuperly",
        "default_icon": "icon_v2_128x128.png"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "pinner.js"
            ],
            "css": [
                "pinner.css"
            ],
            "exclude_matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "drawer.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "nudge.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "common.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "quiz.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/app-space108.zuperly.com\/*",
            "https:\/\/app-space110.zuperly.com\/*",
            "https:\/\/app.zuperly.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.ttf",
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "alarms",
        "contextMenus",
        "cookies",
        "idle",
        "notifications",
        "scripting",
        "storage",
        "tabs",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "iframe_ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    }
}