vulog - logger, bookmarker & highlighter

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

vulog - logger, bookmarker & highlighter란 무엇입니까?

vulog - logger, bookmarker & highlighter은(는) https://freezr.info에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

vulog - logger, bookmarker & highlighter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 vulog - logger, bookmarker & highlighter vulog - logger, bookmarker & highlighter
ID peoooghegmfpgpafglhhibeeeeggmfhb
공식 URL https://chromewebstore.google.com/detail/vulog-logger-bookmarker-h/peoooghegmfpgpafglhhibeeeeggmfhb
설명 An app for logging, bookmarking and highlighting the text on the pages you visit on chrome/brave browsers.
파일 크기 1.13 MB
설치 횟수 24
현재 버전 0.0.4056
최근 업데이트 2021-11-28
출시 날짜 2020-07-02
평점 5.00/5 총 1 개의 평점
개발자 https://freezr.info
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.salmanff.com/ppage/vulog-intro
도움말 페이지 URL https://github.com/salmanff/vulog-browser-extension
지원되는 언어 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"
    ]
}