Point

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

Wat is Point?

Point is een Chrome-extensie ontwikkeld door http://getpoint.co, en de belangrijkste functie is "Point is a quick way to share and discuss what you find online.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Point

Download Point-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Point Point
ID ppcfnlhgbpebbbfmcpbkajjklimomfcd
Officiële URL https://chrome.google.com/webstore/detail/point/ppcfnlhgbpebbbfmcpbkajjklimomfcd
Beschrijving Point is a quick way to share and discuss what you find online.
Bestandsgrootte 1.72 MB
Aantal Installaties 5,041
Huidige Versie 2019.2.0.5
Laatst Bijgewerkt 2020-02-24
Publicatiedatum 2020-02-23
Beoordeling 4.78/5 Totaal 125 Beoordelingen
Ontwikkelaar http://getpoint.co
Betalingswijze free
Extensiewebsite https://www.getpoint.co/
Help Pagina-URL https://twitter.com/GetPointApp
URL van de Privacybeleid Pagina https://www.getpoint.co/legal
Ondersteunde Talen 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\/*"
    ]
}