PageStickies
You can put a sticky note on a web page
What is PageStickies?
PageStickies is a Chrome extension developed by https://wordpress.ideacompo.com, and its main feature is "You can put a sticky note on a web page".
Extension Screenshots
Download PageStickies Extension CRX File
Download PageStickies extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Webページの特定座標にメモを貼り付けることが出来るツール ブックマークのように使うことも可能 現在のバージョンでは、保存データはサーバーには送信されません。(ブラウザのキャッシュ機能に保存しています)
Extension Basic Information
Name | PageStickies |
ID | ehdabffagkcobfmigfgbdipbddoefhhc |
Official URL | https://chromewebstore.google.com/detail/pagestickies/ehdabffagkcobfmigfgbdipbddoefhhc |
Description | You can put a sticky note on a web page |
File Size | 1.04 MB |
Installation Count | 456 |
Current Version | 1.1.0 |
Last Updated | 2017-05-21 |
Publish Date | 2017-05-21 |
Rating | 3.00/5 Total 2 Ratings |
Developer | https://wordpress.ideacompo.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |