PageStickies

You can put a sticky note on a web page

Cos'è PageStickies?

PageStickies è un'estensione di Chrome sviluppata da https://wordpress.ideacompo.com, e la sua funzione principale è "You can put a sticky note on a web page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PageStickies

Scarica i file di estensione PageStickies in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Webページの特定座標にメモを貼り付けることが出来るツール
ブックマークのように使うことも可能
現在のバージョンでは、保存データはサーバーには送信されません。(ブラウザのキャッシュ機能に保存しています)                    

Informazioni di Base sull'Estensione

Nome PageStickies PageStickies
ID ehdabffagkcobfmigfgbdipbddoefhhc
URL Ufficiale https://chromewebstore.google.com/detail/pagestickies/ehdabffagkcobfmigfgbdipbddoefhhc
Descrizione You can put a sticky note on a web page
Dimensione del File 1.04 MB
Conteggio Installazioni 456
Versione Corrente 1.1.0
Ultimo Aggiornamento 2017-05-21
Data di Pubblicazione 2017-05-21
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://wordpress.ideacompo.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PageStickies",
    "short_name": "PS",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "You can put a sticky note on a web page",
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon_off.png",
        "default_title": "PageStickies",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "origin\/contents.js"
            ]
        }
    ],
    "options_page": "options.html"
}