Markers

Add mark as seen buttons to your favorite websites.

Was ist Markers?

Markers ist eine Chrome-Erweiterung, die von https://markers.app entwickelt wurde, und ihr Hauptmerkmal ist "Add mark as seen buttons to your favorite websites.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Markers-Erweiterungs-CRX-Datei herunterladen

Laden Sie Markers-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

                        ⚠️ This extension includes paid plans. 

Once you install the Markers extension for Google Chrome on your desktop, a new mark as seen button will be added to the items listed below:
✓ Videos on Youtube (www.youtube.com)
✓ Videos on TED (www.ted.com)
✓ Tweets on Twitter (www.twitter.com)
✓ Products on Product Hunt (www.producthunt.com)

Every time you mark an item as seen, we'll change its visual appearance so that you can easily spot items you've already seen when you visit the sites the next round.

Your marked links are automatically synced and backed up on cloud. You have full control over your data.

Useful Links:
✓ See our pricing and subscribe at https://www.markers.app/
✓ Review our privacy policy at https://www.markers.app/privacy
@ Contact us with any questions at [email protected]                    

Grundlegende Informationen zur Erweiterung

Name Markers Markers
ID jhajgeogdlclhbngdccoejhjkaeekhpp
Offizielle URL https://chromewebstore.google.com/detail/markers/jhajgeogdlclhbngdccoejhjkaeekhpp
Beschreibung Add mark as seen buttons to your favorite websites.
Dateigröße 32.93 KB
Installationsanzahl 238
Aktuelle Version 2.0.0
Letztes Update 2024-02-22
Veröffentlichungsdatum 2020-04-26
Bewertung 4.00/5 Insgesamt 7 Bewertungen
Entwickler https://markers.app
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.markers.app/
URL der Datenschutzrichtlinien-Seite https://www.markers.app/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markers",
    "version": "2.0.0",
    "description": "Add mark as seen buttons to your favorite websites.",
    "permissions": [
        "declarativeContent",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "markers.js"
            ],
            "css": [
                "markers.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/markers16.png",
            "32": "images\/markers32.png",
            "48": "images\/markers48.png",
            "128": "images\/markers128.png"
        }
    },
    "icons": {
        "16": "images\/markers16.png",
        "32": "images\/markers32.png",
        "48": "images\/markers48.png",
        "128": "images\/markers128.png"
    },
    "manifest_version": 3
}