Popup for Keep™

Load Google Keep™ in a popup from the current tab in Google Chrome™.

Τι είναι το Popup for Keep™;

Το Popup for Keep™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://claudiodangelis.com, και η κύρια λειτουργία του είναι "Load Google Keep™ in a popup from the current tab in Google Chrome™.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Popup for Keep™

Λήψη αρχείων επέκτασης Popup for Keep™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        * Popup for Keep™

Load Google Keep™ in a popup from the current tab in Google Chrome™.

* Support
Telegram Channel: https://t.me/popupforkeep
Twitter: @daw985
Buy Me A Coffee: https://www.buymeacoffee.com/claudiodangelis
PayPal Donation: https://paypal.me/claudiodangelis

* Source Code
https://github.com/claudiodangelis/popup-for-keep

* New stuff!
December 2018, Version 0.10.0: Fixed the long time bug affecting users of Google Suite for Work/Education 
February 2018, Version 0.9.0: Major refactoring of the code. You probably (and hopefully!) won't see any difference in the user experience
April 29 2017, Version 0.8.0: Minor yet exciting improvements!
April 16, 2016, Version -0.6.0: Added support for multiple Google accounts
January 31, 2016, Version 0.5.2: Added an option page and a monochrome icon
November 7, Version 0.5.0: The popup loads faster now! Yes!
March 6, Version 0.4.0: Added the ability of detaching the popup from the toolbar to make it persistent!


* Credits
- Icons made by SimpleIcon from Flaticon (http://flaticon.com) licensed by CC BY 3.0 (http://creativecommons.org/licenses/by/3.0)

- Font Awesome by Dave Gandy - http://fontawesome.io)                    

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

Όνομα Popup for Keep™ Popup for Keep™
ID fhcmhglnohogibbbpbodmjeggpdlboop
Επίσημο URL https://chromewebstore.google.com/detail/popup-for-keep/fhcmhglnohogibbbpbodmjeggpdlboop
Περιγραφή Load Google Keep™ in a popup from the current tab in Google Chrome™.
Μέγεθος Αρχείου 1.12 MB
Αριθμός Εγκαταστάσεων 43,959
Τρέχουσα Έκδοση 0.15.2
Τελευταία Ενημέρωση 2020-01-23
Ημερομηνία Δημοσίευσης 2020-01-23
Αξιολόγηση 3.74/5 Συνολικά 182 Αξιολογήσεις
Προγραμματιστής https://claudiodangelis.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://claudiodangelis.com
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Popup for Keep\u2122",
    "description": "Load Google Keep\u2122 in a popup from the current tab in Google Chrome\u2122.",
    "version": "0.15.2",
    "author": "Claudio d'Angelis",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Keep as a popup",
        "default_popup": "popup.html"
    },
    "incognito": "not_allowed",
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "64": "img\/icon-64.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/keep.google.com\/*"
            ],
            "js": [
                "js\/addTo.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "https:\/\/keep.google.com\/keep\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}