vulog - logger, bookmarker & highlighter

An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers.

Qu'est-ce que vulog - logger, bookmarker & highlighter ?

vulog - logger, bookmarker & highlighter est une extension Chrome développée par https://freezr.info, et sa fonction principale est "An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension vulog - logger, bookmarker & highlighter

Téléchargez les fichiers d'extension vulog - logger, bookmarker & highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        vulog is an extension app that allows you to (1) bookmark web pages pages, highlight text on those pages, and take notes, (2) save your browsing history,  and (3) see the cookies tracking you on various web sites, and delete them.

Interacting with vulog
- The pop-up - Press the vulog button at the top of your browser and the vulog pop-up appears. So you can bookmark the page you are on, take notes and view your inbox. You can also click on a link to view your bookmarks in a browser tab, and choose your highlighting color and edit mode.
- Browser tab: View and search your bookmarks, or filter to see what you have bookmarked. (Use link under the inbox tab.)
- The webpage-box: Press CNTRL S (Mac: CMD S)  on any web page and you will see a small box on the top right of the page where you can bookmark and take notes, and also change your highlighting options and edit mode. (see below) Press escape to close the web-page box.
- Right-Click: When you highlight text, you can right click on it to highlight the text. If you right click on a web page link, you also have a choice to add it to your inbox for later reading.
- 'Edit Mode': If you turn on edit mode (from the pop-up or webpage-box), then your cursor will turn into a giant highlighter and you can highlight text. When you press on a link in edit mode, you get the option of adding it to you inbox (which means you dont have to go through the right-click menu)

Highlighting text: You can highlight parts of any web page in different colors. Use the highlight pallette in the pop-up or webpage-box to choose your highlight color. For easier highlighting, turn on edit mode.

Bookmarking: You can add any page to your favorites, inbox or archive using the pop-up or webpage-box. The 'inbox' tab in your pop-up automatically shows all the items marked with inbox, and not marked with archive. From there you can also see all your bookmarks in a browser tab. Also, while the menu is open, pressing cntrl/cmd-I adds to inbox,  cntrl/cmd-A archives, and pressing cntrl/cmd-S again adds it to favorites.

Web Page Info: The pop-up shows detailed info on the web pages you visit. You can see the cookies and third party trackers that a site is using, and you can delete all the trackers that vulog has found. (Web pages have many ways of tracking you, so dont think this is a magic bullet.)

Data storage: Your bookmarks and browser history is kept in the chrome's local storage, which has limited space. After some weeks (or months depending on usage), vulog automatically deletes older items. 

Privacy and CEPS
vulog doesn't send any of your data to any outside servers, and you can always delete your data from the "More" tab. If you want to store your data on your own server you will need to set up a Personal Data Store. vulog was built to be able to accept CEPS-compatible data stores. (See here for more details https://www.salmanff.com/ppage/2020-3-15-Why-CEPS-Matters ) 
Having your data sit on your personal data store also means that you can publish your bookmarks and highlights and notes. Press the bullhorn button to publish the link from your server. 

Acknowledgements
Highlighting functionality was largely copied from Jérôme Parent-Lévesque. https://github.com/jeromepl/highlighter Rendering function (dgelements.js) was inspired by David Gilbertson (who never expected someone to actually implement his idea I think.) https://medium.com/hackernoon/how-i-converted-my-react-app-to-vanillajs-and-whether-or-not-it-was-a-terrible-idea-4b14b1b2faff                    

Informations de Base sur l'Extension

Nom vulog - logger, bookmarker & highlighter vulog - logger, bookmarker & highlighter
ID peoooghegmfpgpafglhhibeeeeggmfhb
URL Officiel https://chromewebstore.google.com/detail/vulog-logger-bookmarker-h/peoooghegmfpgpafglhhibeeeeggmfhb
Description An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers.
Taille du Fichier 1.13 MB
Nombre d'Installations 24
Version Actuelle 0.0.4056
Dernière Mise à Jour 2021-11-28
Date de Publication 2020-07-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://freezr.info
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.salmanff.com/ppage/vulog-intro
URL de la Page d'Aide https://github.com/salmanff/vulog-browser-extension
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "vulog - logger, bookmarker & highlighter",
    "short_name": "vulog",
    "description": "An app for logging, bookmarking and highlighting the text on the pages you visit on chrome\/brave browsers.",
    "version": "0.0.4056",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Logging and bookmarking web page views",
        "default_icon": "vulog logo v1.png",
        "default_popup": "static\/popUp.html"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "cookies",
        ""
    ],
    "optional_permissions": [
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/pageData.js",
                "scripts\/parsePage.js",
                "scripts\/highlight.js",
                "scripts\/overlay.js",
                "scripts\/redirect.js",
                "scripts\/load_highlights.js"
            ],
            "css": [
                "static\/overlay.css"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "scripts\/manifest.js",
            "freezr\/freezr_app_init.js",
            "freezr\/freezr_core.js",
            "freezr\/jlos-frozen.js",
            "scripts\/highlight.js",
            "scripts\/pageData.js",
            "scripts\/background.js"
        ]
    },
    "icons": {
        "16": "static\/vulog_logo_16.png",
        "48": "static\/vulog_logo_48.png",
        "128": "static\/vulog_logo_128.png"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}