Dynamic Bookmarks

Chrome extension which dynamically updates bookmarks based on the specified regular expression.

Dynamic Bookmarksคืออะไร?

Dynamic Bookmarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DaniloNovakovic และคุณลักษณะหลักของมันคือ "Chrome extension which dynamically updates bookmarks based on the specified regular expression."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dynamic Bookmarks

ดาวน์โหลดไฟล์ส่วนขยาย Dynamic Bookmarks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ------------------------------------------------------------------
❓ What is this about?

Lately, I found myself wondering too much: "On what episode was I last on?", "What video in a playlist was I last watching?" and similar. So I decided to solve this problem by creating an extension where bookmarks can update themselves if a certain condition is met. 

This allows us to track:
 ✔️ anime / TV shows
 ✔️ videos in a YouTube playlist
 ✔️ last read blog / documentation page
 ✔️ etc. (basically ANYTHING with URL!)

It also comes with its bookmark manager which lets you easily filter tracked bookmarks, edit the regular expression, etc. 
You can also view the history of the 10 most recent links for each dynamic (tracked) bookmark. 

To stop tracking a bookmark, just remove the regular expression (RegExp) from it.

------------------------------------------------------------------
🎓 What is "regular expression"?

It simply is a sequence of characters that define a search pattern. Ever did CTRL+F to find something on the page? Well, it's pretty much the same thing, but with extra special characters that let your search be more flexible.

In most cases, you won't even have to worry about the RegExp field since the automatically generated value will be good enough, but you might run into rare occasions where the site will be using unique URL notation which would require manual entry of this field.

An example of such a site is animekisa.tv. Let's see how we can generate regular expressions using a very simple tactic.

First, let's click on few episodes:
https://animekisa.tv/mo-dao-zu-shi-season-2-episode-3
https://animekisa.tv/mo-dao-zu-shi-season-2-episode-4

Now ask yourself, what part stays the same? - animekisa.tv/mo-dao-zu-shi-season-2

And that would be our value for the RegExp field!

------------------------------------------------------------------ 

Hopefully, by now you understood how to use this extension, but if that is not the case, a complete guide on how to use this extension with pictures and FAQ can be found here: https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks/blob/master/README.md 🤔

If you have any additional ideas, requests, or if you encounter bugs, you can post an issue on GitHub page: https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks/issues  💡🐛

------------------------------------------------------------------ 

If you enjoyed this extension you can support me by giving it 5 stars ⭐️⭐️⭐️⭐️⭐️                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dynamic Bookmarks Dynamic Bookmarks
ID ilhojkjlfkppedidhpecepohnmlndopb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dynamic-bookmarks/ilhojkjlfkppedidhpecepohnmlndopb
คำอธิบาย Chrome extension which dynamically updates bookmarks based on the specified regular expression.
ขนาดไฟล์ 452 KB
จำนวนการติดตั้ง 244
เวอร์ชันปัจจุบัน 3.1.2
อัปเดตครั้งล่าสุด 2023-05-08
วันที่เผยแพร่ 2020-06-29
คะแนน 4.73/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา DaniloNovakovic
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks
URL หน้าช่วยเหลือ https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks/blob/master/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dynamic Bookmarks",
    "description": "Chrome extension which dynamically updates bookmarks based on the specified regular expression.",
    "version": "3.1.2",
    "permissions": [
        "tabs",
        "bookmarks",
        "storage",
        "favicon"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons8_Books_16.png",
            "32": "icons8_Books_32.png",
            "48": "icons8_Books_48.png",
            "64": "icons8_Books_64.png",
            "128": "icons8_Books_128.png"
        }
    },
    "icons": {
        "16": "icons8_Books_16.png",
        "32": "icons8_Books_32.png",
        "48": "icons8_Books_48.png",
        "64": "icons8_Books_64.png",
        "128": "icons8_Books_128.png"
    },
    "content_security_policy": {
        "connect-src": "ws:\/\/localhost:8097",
        "script-src": "self http:\/\/localhost:8097",
        "object-src": "self",
        "img-src": "self chrome:\/\/favicon",
        "font-src": "self https:\/\/fonts.gstatic.com https:\/\/fonts.googleapis.com",
        "style-src": "self https:\/\/fonts.googleapis.com\/"
    }
}