PageStickies
You can put a sticky note on a web page
Qu'est-ce que PageStickies ?
PageStickies est une extension Chrome développée par https://wordpress.ideacompo.com, et sa fonction principale est "You can put a sticky note on a web page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PageStickies
Téléchargez les fichiers d'extension PageStickies au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Webページの特定座標にメモを貼り付けることが出来るツール ブックマークのように使うことも可能 現在のバージョンでは、保存データはサーバーには送信されません。(ブラウザのキャッシュ機能に保存しています)
Informations de Base sur l'Extension
Nom | PageStickies |
ID | ehdabffagkcobfmigfgbdipbddoefhhc |
URL Officiel | https://chromewebstore.google.com/detail/pagestickies/ehdabffagkcobfmigfgbdipbddoefhhc |
Description | You can put a sticky note on a web page |
Taille du Fichier | 1.04 MB |
Nombre d'Installations | 456 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2017-05-21 |
Date de Publication | 2017-05-21 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | https://wordpress.ideacompo.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } |