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?

Sticky Notes是由Noah Baxley開發的Chrome擴展程式,該擴展的主要功能是“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

下載Sticky Notes擴展crx文件

下載Sticky Notes擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Sticky Notes Sticky Notes
ID gepfdgjedadbefbfnhjdhpbdannbmcnf
官方網址 https://chromewebstore.google.com/detail/sticky-notes/gepfdgjedadbefbfnhjdhpbdannbmcnf
簡介 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…
檔案大小 330 KB
安裝次數 86
目前版本 1.1.2
更新時間 2018-10-23
上架時間 2018-10-22
評分 3.00/5 共 2 次評分
開發者 Noah Baxley
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}