Sticky Notes

Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…

Sticky Notes là gì?

Sticky Notes là một tiện ích mở rộng Chrome được phát triển bởi Noah Baxley, và tính năng chính của nó là "Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sticky Notes

Tải xuống các tệp mở rộng Sticky Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Produces a sticky note that sticks to the tab you are on.
The sticky note scrolls with you down or up the page.
To get one of these sticky notes press Alt n.
Currently trying to make it so that once you make a note it will appear on other tabs as well as your original tab.

This is a good item to have if you want to take notes on a webpage and then use those notes somewhere else in your browser

In the process of making things better; if customers have suggestions on how to make this better, please describe.

I will have better screenshots in next version.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sticky Notes Sticky Notes
ID gepfdgjedadbefbfnhjdhpbdannbmcnf
URL Chính Thức https://chromewebstore.google.com/detail/sticky-notes/gepfdgjedadbefbfnhjdhpbdannbmcnf
Mô tả Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…
Kích Thước Tệp 330 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2018-10-23
Ngày Phát Hành 2018-10-22
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Noah Baxley
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "external\/jquery\/jquery.js",
                "jquery-ui.min.js",
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2,
    "name": "Sticky Notes",
    "version": "1.1.2",
    "browser_action": {
        "default_popup": "Popup.html",
        "browser_style": true,
        "default_icon": "StickyNote.png",
        "default_title": "Sticky Note Adder"
    },
    "icons": {
        "48": "StickyNote.png",
        "96": "StickyNote.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "Thumbtack.png",
        "delete-sign.png"
    ]
}