URLs Manager - Websites Blocker and Labeller

Block or tag websites, URLs and domains!

URLs Manager - Websites Blocker and Labellerคืออะไร?

URLs Manager - Websites Blocker and Labeller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JB และคุณลักษณะหลักของมันคือ "Block or tag websites, URLs and domains!"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URLs Manager - Websites Blocker and Labeller

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

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

                        Improve productivity by easily blocking or tagging any interesting, distracting or harmful websites. 
How many times you came back on an useless page and wasted time on it? Or went back on a page and read information that you had already read before and didn't want read again?
With this extension you can set different labels on all the pages you want, and even block them! It is like an advanced bookmark/block websites manager.

You can set labels on each page and domain, as :
- USELESS (light red flag + top label on the page)
- USEFUL (green flag)
- IMPORTANT (blue flag)
Or simply block the page!

You can block a domain and unblock some specific pages of the same domain.

You also can set a note (short message) on each page, by example why you tagged this page or why you blocked it.

The extension also tells you how many times you visited the current page.

I made this extension when I was making a lot of researches on many websites and I was not sure if I already interacted with some pages (example: call the number, send a message, read the info...). So I thought it would be nice if I could set a note/reminder on the pages, hence the creation of this extension.

With URLs Manager, you'll not waste time anymore!
If you want me to add some features, contact me :)                    

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

ชื่อ URLs Manager - Websites Blocker and Labeller URLs Manager - Websites Blocker and Labeller
ID bpjhmpholbncnfdooeagoonhhbndcefh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/urls-manager-websites-blo/bpjhmpholbncnfdooeagoonhhbndcefh
คำอธิบาย Block or tag websites, URLs and domains!
ขนาดไฟล์ 50.74 KB
จำนวนการติดตั้ง 263
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2023-12-21
วันที่เผยแพร่ 2018-11-05
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา JB
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://sites.google.com/view/urls-manager
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/urls-manager
ภาษาที่รองรับ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.2",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage",
        "history"
    ],
    "options_page": "page_options.html",
    "background": {
        "scripts": [
            "background.js",
            "strings_options.js",
            "strings_content.js",
            "strings_popup.js",
            "functions_common.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js",
                "functions_common.js",
                "strings_content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "The current page is useless? Click here!",
        "default_popup": "page_popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}