Bookmarkify

Bookmark anywhere on a web page

Τι είναι το Bookmarkify;

Το Bookmarkify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Surya Pratap, και η κύρια λειτουργία του είναι "Bookmark anywhere on a web page".

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

screenshot

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

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

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

                        Many times we read very long articles/Tutorials and sometimes its difficult to finish them in one go. You might want to save your progress so that when you revisit same page you may want to quickly jump where you left. This extension will make it possible :D.

This extension will help user to select any text on a web page and save it as a bookmark, so that when user is revisiting the same web page he/she will be able to see all the saved bookmark on right side of the page in a transparent bar, which will appear only on hover. User will have ability to delete the existing bookmarks and quickly jump to specific bookmark. These bookmarks are getting saved in user's browser only. so for every unique URL there will be unique bookmark data.

This extension is not sending any info outside the user's system. Everything is client side only. so all the user data is safe.                    

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

Όνομα Bookmarkify Bookmarkify
ID dnbnfomolmfanljmiaeenbmdefpiaadd
Επίσημο URL https://chromewebstore.google.com/detail/bookmarkify/dnbnfomolmfanljmiaeenbmdefpiaadd
Περιγραφή Bookmark anywhere on a web page
Μέγεθος Αρχείου 333 KB
Αριθμός Εγκαταστάσεων 486
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2023-06-28
Ημερομηνία Δημοσίευσης 2020-07-27
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Surya Pratap
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://forms.gle/Vg3wLHk1miCgDVrm9
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bookmarkify",
    "description": "Bookmark anywhere on a web page",
    "version": "1.0.5",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content.js"
            ],
            "css": [
                ".\/css\/style.css"
            ]
        }
    ],
    "action": {
        "default_icon": "img\/icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/background-script.js",
        "type": "module"
    }
}