PageStickies
You can put a sticky note on a web page
O que é PageStickies?
PageStickies é uma extensão do Chrome desenvolvida por https://wordpress.ideacompo.com, e sua principal característica é "You can put a sticky note on a web page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PageStickies
Baixe arquivos de extensão PageStickies no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Webページの特定座標にメモを貼り付けることが出来るツール ブックマークのように使うことも可能 現在のバージョンでは、保存データはサーバーには送信されません。(ブラウザのキャッシュ機能に保存しています)
Informações Básicas da Extensão
Nome | PageStickies |
ID | ehdabffagkcobfmigfgbdipbddoefhhc |
URL Oficial | https://chromewebstore.google.com/detail/pagestickies/ehdabffagkcobfmigfgbdipbddoefhhc |
Descrição | You can put a sticky note on a web page |
Tamanho do Arquivo | 1.04 MB |
Contagem de Instalações | 456 |
Versão Atual | 1.1.0 |
Última Atualização | 2017-05-21 |
Data de Publicação | 2017-05-21 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | https://wordpress.ideacompo.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |