Bookmarkify

Bookmark anywhere on a web page

Bookmarkify란 무엇입니까?

Bookmarkify은(는) Surya Pratap에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark anywhere on a web page"입니다.

확장 프로그램 스크린샷

screenshot

Bookmarkify 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}