Bookmarkify

Bookmark anywhere on a web page

什麼是Bookmarkify?

Bookmarkify是由Surya Pratap開發的Chrome擴展程式,該擴展的主要功能是“Bookmark anywhere on a web page”。

擴展截圖

screenshot

下載Bookmarkify擴展crx文件

下載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
官方網址 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"
    }
}