Slice Web Clipper

Clip web content into Slice projects

Was ist Slice Web Clipper?

Slice Web Clipper ist eine Chrome-Erweiterung, die von https://slice.tech entwickelt wurde, und ihr Hauptmerkmal ist "Clip web content into Slice projects".

Erweiterungsscreenshots

screenshot
screenshot

Slice Web Clipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Slice Web Clipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        When you see something useful while browsing, save it directly into one of your Slice projects with our web clipper. 

When you're ready to work, it will be waiting for you among your project's Notes.

Slice's web clipper is just another way we help you work the way you think.

Write on!                    

Grundlegende Informationen zur Erweiterung

Name Slice Web Clipper Slice Web Clipper
ID kpckoicladndijfepjdhgioebklepckp
Offizielle URL https://chromewebstore.google.com/detail/slice-web-clipper/kpckoicladndijfepjdhgioebklepckp
Beschreibung Clip web content into Slice projects
Dateigröße 2.9 MB
Installationsanzahl 93
Aktuelle Version 2.0.7
Letztes Update 2021-05-28
Veröffentlichungsdatum 2020-03-30
Entwickler https://slice.tech
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://slice.tech
Hilfeseite URL https://slice.tech/contact
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx8gJ6WnbwrxonY2R+NaT16AdfxtwpIXvP9bvA+CHw+RidNWpKL\/HhreoCtpaX3kpngCtkUVR\/wBQcabmk7BGC8DCyyC5cB2grcyV3maUUJjcjcICBosBTWlF+wb+B+z0djkekVOwFRHCRwyicfXcLFt87087Pcj+OgCdk6hlJ9+WQlnFOGi7sRP1diHCMEtUf3YG2kvIa2dOmvy3bW1kQo5EGp0BOkkeiiDlTIIbJE\/db0vWjfgLRe2W4ynFJeqljJq3ASLTOnfB3rPrDWvWQRclVW8K7gQ9LO177nmY\/tf6lXezl9t2D5Zo8TrzxyatME2tXYrzT\/3zhHN4o1DzSwIDAQAB",
    "name": "Slice Web Clipper",
    "version": "2.0.7",
    "description": "Clip web content into Slice projects",
    "manifest_version": 2,
    "homepage_url": "https:\/\/slice.tech\/2021\/05\/slice-web-clipper",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/production\/icon16.png",
            "48": "assets\/icons\/production\/icon48.png",
            "128": "assets\/icons\/production\/128.png"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/cdn.mxpnl.com\/libs\/mixpanel-2-latest.min.js; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*",
                "https:\/\/slice-web.herokuapp.com\/*",
                "https:\/\/slice-alpha.herokuapp.com\/*",
                "https:\/\/app.slice.tech\/*",
                "https:\/\/app.slicecontent.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "clipContentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/js\/Readability.js",
        "assets\/js\/Readability-readerable.js"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/slice-web.herokuapp.com\/*",
            "*:\/\/slice-alpha.herokuapp.com\/*",
            "*:\/\/app.slice.tech\/*",
            "*:\/\/app.slicecontent.com\/*"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "storage"
    ],
    "icons": {
        "16": "assets\/icons\/production\/icon16.png",
        "48": "assets\/icons\/production\/icon48.png",
        "128": "assets\/icons\/production\/128.png",
        "440": "assets\/icons\/production\/440.png"
    }
}