Unmark

Unmark's Chrome extension for saving your marks.

Τι είναι το Unmark;

Το Unmark είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://unmark.it, και η κύρια λειτουργία του είναι "Unmark's Chrome extension for saving your marks.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The Unmark Chrome extension allows you to easily save pages to your Unmark account. 

You can do the following:

- Right click on any page to quickly save it to your account behind-the-scenes

- Click the extension icon provided to save/update the page with more details

- Archive, restore and delete the page from your account using the extension icon

- Search your saved marks from the omnibox (Type unmark then your search). Search is restricted to paid accounts only.

- Open source! Fork it on GitHub: https://github.com/plainmade/unmark-chrome                    

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

Όνομα Unmark Unmark
ID cdhnljlbeehjgddokagghpfgahhlifch
Επίσημο URL https://chromewebstore.google.com/detail/unmark/cdhnljlbeehjgddokagghpfgahhlifch
Περιγραφή Unmark's Chrome extension for saving your marks.
Μέγεθος Αρχείου 81.95 KB
Αριθμός Εγκαταστάσεων 509
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2014-04-02
Ημερομηνία Δημοσίευσης 2014-04-02
Αξιολόγηση 3.93/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής https://unmark.it
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://unmark.it
Διεύθυνση URL της Σελίδας Βοήθειας http://help.unmark.it
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unmark",
    "description": "Unmark's Chrome extension for saving your marks.",
    "version": "1.0.1",
    "homepage_url": "https:\/\/unmark.it",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/unmark.it\/"
    ],
    "omnibox": {
        "keyword": "unmark"
    },
    "background": {
        "scripts": [
            "js\/third_party\/jquery.js",
            "js\/unmark\/base.js",
            "js\/unmark\/omnibox.js",
            "js\/unmark\/contexts.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Save to Unmark",
        "default_popup": "unmark.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/unmark\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}