Point

Point is a quick way to share and discuss what you find online.

Τι είναι το Point;

Το Point είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://getpoint.co, και η κύρια λειτουργία του είναι "Point is a quick way to share and discuss what you find online.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Point

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

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

                        What people are saying:

“Emailing a link now is the most frustrating thing in the world”

“I never knew I needed this app, until I had it. Now I can’t live without it.”

“Super intuitive.”

“I wish I thought of this. I can’t believe it hasn’t existed before.”

---

The Point Chrome extension requests a number of Google Chrome permissions in order to function as the quickest way to send a link from any webpage and have an interactive chat alongside any website content. Below we have detailed how we use each of these permissions. You can also find this information in our privacy policy (https://www.getpoint.co/legal).
- Point uses the "All URLS" permission so that it can run the app on any page. This allows you to quickly and easily send a Point from any page and open Point chats alongside the page. Point does not use this to record your browsing history. It only saves the websites you send a Point chat from.
- Point uses the "Web Request" and "Web Request Blocking" permission only to intercept web requests to Point's website and servers so that it can securely send and receive your authentication info during login. It does not use this permission to record or manipulate your web browsing activity.
- Point uses the "Web Navigation" permission to hide an open Point chat when you leave the page it was started on.
- Point uses the "Cookies" permission only to track cookies you may have from visiting our website (getpoint.co) so that it can potentially show you a different login experience if you joined Point from an invite. These cookies may also be used to determine how you discovered Point in our analytics so that we can better understand the app's growth.
- Point uses the "Context Menus" permission to allow you to send a Point and add highlights from the context menu (accessed by right/control-clicking on a page).
- Point uses the "Tabs" and "Windows" permissions in order to open webpages with a Point you have sent or received. It also uses this to send new message updates to open chat pages.
- Point uses the "Storage" permission to store your account info (your login + friends list) securely in Chrome storage to keep you logged-in and allow you to immediately send a Point from any webpage.
- Point uses the "Notifications" permission to send you in-browser notifications when you receive points.
- Point uses the "Alarms" permission to periodically perform background maintenance (check for updates and synchronize your notifications)

---

http://thenextweb.com/socialmedia/2014/07/31/point-chrome-extension-will-let-share-chat-within-article/
http://research.gigaom.com/2015/01/point-is-a-small-and-simple-app-for-link-sharing-and-commentary/                    

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

Όνομα Point Point
ID ppcfnlhgbpebbbfmcpbkajjklimomfcd
Επίσημο URL https://chrome.google.com/webstore/detail/point/ppcfnlhgbpebbbfmcpbkajjklimomfcd
Περιγραφή Point is a quick way to share and discuss what you find online.
Μέγεθος Αρχείου 1.72 MB
Αριθμός Εγκαταστάσεων 5,041
Τρέχουσα Έκδοση 2019.2.0.5
Τελευταία Ενημέρωση 2020-02-24
Ημερομηνία Δημοσίευσης 2020-02-23
Αξιολόγηση 4.78/5 Συνολικά 125 Αξιολογήσεις
Προγραμματιστής http://getpoint.co
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.getpoint.co/
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/GetPointApp
URL της Σελίδας Πολιτικής Απορρήτου https://www.getpoint.co/legal
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Point",
    "version": "2019.2.0.5",
    "description": "Point is a quick way to share and discuss what you find online.",
    "background": {
        "page": "background\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.pdf",
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*",
                "*:\/\/localhost\/*",
                "*:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "content-script\/styles\/icons.css"
            ],
            "js": [
                "content-script\/scripts\/point-cs.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*.getpoint.co\/*"
            ],
            "js": [
                "point-website-cs\/main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "dropdown\/dropdown.html",
        "default_icon": "assets\/icon48.png"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "webNavigation",
        "contextMenus",
        "cookies",
        "tabs",
        "windows",
        "storage",
        "notifications",
        "",
        "alarms",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "assets\/*",
        "first-time\/*",
        "content-script\/styles\/*"
    ]
}