Annotate web pages/CONTEXT

Use this extension to annotate (edit, highlight, popup/embedded notes & page notes) your web-pages.

Annotate web pages/CONTEXTคืออะไร?

Annotate web pages/CONTEXT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย neuralnetworks2.0 และคุณลักษณะหลักของมันคือ "Use this extension to annotate (edit, highlight, popup/embedded notes & page notes) your web-pages."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Annotate web pages/CONTEXT

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

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

                        Use this extension to annotate: highlight, edit, adding popup-notes and page notes on web pages, as you browse. The extension saves your changes locally, and next time, when same url is visited, the web-page is replaced by your annotated web page.

Click on the extension icon (page action button) next to address bar to see the different options.

Please note your feedback is very important to us, thus please let us know how you feel about it (good, bad, nothing... anything). It will help us improve the extension, and will also give us motivation to work on it. You can also directly write to us at: [email protected]

Privacy and legal document: https://neural2-0.github.io/Legal.html
FAQs: https://neural2-0.github.io/FAQ.html

Ver 1.6:
- Changed search page for some monetization.

Ver 1.4:
- Features added
   - page notes
   - annotation indicator (via color of extension button).
- UX enhanced.
- Bug fixes.

Ver 1.3:
- Features added
   - popup notes.
   - view all highlights and notes for a page.
   - search annotated pages..
- Bug Fixes.

Ver 1.2:
- Remove highlight functionality added.
- Bug Fixes.

Limitations:
- Changes at source (actual pages), for annotated pages won’t be visible (as page is replaced by locally stored annotated pages).
- As annotated pages are saved locally, their life is bound to the extension remaining installed.                    

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

ชื่อ Annotate web pages/CONTEXT Annotate web pages/CONTEXT
ID emajnoacacifjgmkkmheackniabamonm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/annotate-web-pagescontext/emajnoacacifjgmkkmheackniabamonm
คำอธิบาย Use this extension to annotate (edit, highlight, popup/embedded notes & page notes) your web-pages.
ขนาดไฟล์ 292 KB
จำนวนการติดตั้ง 1,642
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2021-07-15
วันที่เผยแพร่ 2019-08-07
คะแนน 3.52/5 รวมทั้งหมด 33 คะแนน
ผู้พัฒนา neuralnetworks2.0
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://neural2-0.github.io/FAQ.html
URL หน้าช่วยเหลือ https://neural2-0.github.io/FAQ.html
URL หน้านโยบายความเป็นส่วนตัว https://neural2-0.github.io/Legal.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Annotate web pages\/CONTEXT",
    "description": "Use this extension to annotate (edit, highlight, popup\/embedded notes & page notes) your web-pages.",
    "version": "1.6",
    "page_action": {
        "default_name": "CONTEXT",
        "default_icon": "icons\/LogoGray32x32.png",
        "default_popup": "pageActionPopup.html"
    },
    "permissions": [
        "tabs",
        "declarativeContent",
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "backgroundEvents.js",
            "pageAction.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "menu.css"
            ],
            "js": [
                "jquery-3.2.0.min.js",
                "content_script.js",
                "search.js",
                "notesSummary.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "edit.png",
        "ring.png",
        "DomainEdit.png",
        "pageActionPopup.html",
        "PageEdit.png",
        "DomainNoEdit.png",
        "PageNoEdit.png",
        "Eraser.png",
        "search.html",
        "search.png",
        "searchIcon.png",
        "searchIcon2.png",
        "summary.png",
        "Cross.png",
        "notes.png",
        "delete.png",
        "EmbeddedNotes.png"
    ]
}