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…

Apa itu Sticky Notes?

Sticky Notes adalah ekstensi Chrome yang dikembangkan oleh Noah Baxley, dan fitur utamanya adalah "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…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sticky Notes

Unduh file ekstensi Sticky Notes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Sticky Notes Sticky Notes
ID gepfdgjedadbefbfnhjdhpbdannbmcnf
URL Resmi https://chromewebstore.google.com/detail/sticky-notes/gepfdgjedadbefbfnhjdhpbdannbmcnf
Deskripsi 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…
Ukuran File 330 KB
Jumlah Instalasi 86
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2018-10-23
Tanggal Publikasi 2018-10-22
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Noah Baxley
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}