WebNote Highlighter

Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…

WebNote Highlighterคืออะไร?

WebNote Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thesolodeveloper และคุณลักษณะหลักของมันคือ "Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…"

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

screenshot

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

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

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

                        Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read but you are unable to do so? Are you a student who is constantly struggling to learn something? If you said yes to any of these, then we are here with a wonderful solution. Introducing webnote highlighter, a simple chrome extension that acts as a one-time solution to all your problems.

Webnote highlighter
1. Allows you to select a specific text content from any website and save it for future reference.
2. Highlights the selected places on the website for better understanding.
3. Allows you to give a customised description while saving.
4. Stores all the selected texts forever in your browser.
5. Allows you to search a particular note and has an option that takes you to the webpage where the note was created and highlights it.
6. Highlights the selected content even upon revisiting the same page.
7. And finally with its most impressive feature export/import, it allows you to share the selected and saved content among your friends/colleagues.


Developer contact: [email protected]                    

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

ชื่อ WebNote Highlighter WebNote Highlighter
ID ghghioakadpoakpmmjbmepcgomdfdpdb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webnote-highlighter/ghghioakadpoakpmmjbmepcgomdfdpdb
คำอธิบาย Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…
ขนาดไฟล์ 218 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 0.01
อัปเดตครั้งล่าสุด 2021-06-29
วันที่เผยแพร่ 2021-06-28
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา thesolodeveloper
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebNote Highlighter",
    "version": "0.01",
    "icons": {
        "16": "app-icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Notes",
        "default_popup": "index.html",
        "default_icon": "app-icon.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage",
        "unlimitedStorage",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content_css.css"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "pin-icon.png",
        "tooltip-background.svg",
        "app-icon.png"
    ]
}