Post It All : Sticky notes

Add sticky notes to your favorite web pages.

Τι είναι το Post It All : Sticky notes;

Το Post It All : Sticky notes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://postitall.txusko.com, και η κύρια λειτουργία του είναι "Add sticky notes to your favorite web pages.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Post It All : Sticky notes

Λήψη αρχείων επέκτασης Post It All : Sticky notes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Notes will be loaded automatically each time you visit the page again.

The notes can be created in the same page or in the extension Dashboard page, and can be blank notes or with the selected text on the page. Notes can be filtered by domain, web page or without filter. There are lots of possibilities!

All notes are stored by using the Chrome Storage API. There are some advantages with it like the automatically sync of your notes between browsers, and some limitations with the data storage quota (https://developer.chrome.com/extensions/storage#property-sync).

****
Version 0.0.1.4 - Release notes:
### Bug fixes
- Remove XMLHttpRequest url validation, provokes wrong behaviours in some login pages.
****
Version 0.0.1.3 - Release notes:
### Improvements
- Upgrade jquery to v3.5.1
- Do not reload pages when the extension is installed and when you manually enable/disable it.
### Bug fixes
- css fixes to avoid breaking the layout of IMDB web pages: https://github.com/txusko/PostItAll-ChromeExtension/issues/1
- Set right options page icon
- Auto-show nots in a wrong `hide` state.
****
Version 0.0.1.2 - Release notes:
- Import/Export note. Globally, by domain or individually.
- Customized shapes: notes with experimental shapes (arrows, tv, talk-bubbles, etc).
- Decrease minimum note width and height.
- Menu improvements: note options & new shapes under a new submenu.
- Improvements in navigation from "Note list". Recover GET params from the page where the note was created.
- Minor improvements & bug fixes.
****

More info at:  http://postitall.txusko.com/extension.html 
Source code available on github:  https://github.com/txusko/PostItAll-ChromeExtension
Bug report:  https://github.com/txusko/PostItAll-ChromeExtension/issues

**** 
This is the an alpha release, so it will probably have some bugs. If you find some of them, create an issue on github, an entry on the help tab or send me an email. Be patient, I will fix it as soon as I can. 
****

Javi Filella
[email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Post It All : Sticky notes Post It All : Sticky notes
ID ifbdckgghfmehefajfoichlhcdiibkoc
Επίσημο URL https://chromewebstore.google.com/detail/post-it-all-sticky-notes/ifbdckgghfmehefajfoichlhcdiibkoc
Περιγραφή Add sticky notes to your favorite web pages.
Μέγεθος Αρχείου 1.46 MB
Αριθμός Εγκαταστάσεων 14,081
Τρέχουσα Έκδοση 0.0.1.4
Τελευταία Ενημέρωση 2022-02-03
Ημερομηνία Δημοσίευσης 2018-01-21
Αξιολόγηση 3.57/5 Συνολικά 46 Αξιολογήσεις
Προγραμματιστής https://postitall.txusko.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://postitall.txusko.com/extension.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "version": "0.0.1.4",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "19": "img\/icono_19.png",
        "20": "img\/icono_19_off.png",
        "38": "img\/icono_38.png",
        "39": "img\/icono_38_off.png",
        "256": "img\/icono_256.png"
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": "img\/icono_256.png",
        "default_popup": "popup.html",
        "scripts": [
            "js\/jquery-3.5.1.min.js",
            "js\/functions.js",
            "js\/popup.js",
            "js\/loadpostits.js"
        ]
    },
    "author": "Javi Filella",
    "homepage_url": "http:\/\/postitall.txusko.com\/",
    "background": {
        "scripts": [
            "js\/jquery-3.5.1.min.js",
            "js\/jquery-ui-1.10.1.min.js",
            "js\/jquery.htmlclean.js",
            "js\/trumbowyg.js",
            "js\/jquery.minicolors.js",
            "js\/jquery.postitall.chromeManager.js",
            "js\/jquery.postitall.js",
            "js\/functions.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "js\/contentscript.js"
            ],
            "css": [
                "css\/jquery.postitall.fontstyles.css",
                "css\/shapes.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "tabs",
        "contextMenus",
        "*:\/\/*\/*",
        ""
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "images\/*.*",
        "css\/*.css",
        "js\/*.js",
        "fonts\/*.woff2"
    ]
}