Point

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

O que é Point?

Point é uma extensão do Chrome desenvolvida por http://getpoint.co, e sua principal característica é "Point is a quick way to share and discuss what you find online.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Point

Baixe arquivos de extensão Point no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Point Point
ID ppcfnlhgbpebbbfmcpbkajjklimomfcd
URL Oficial https://chrome.google.com/webstore/detail/point/ppcfnlhgbpebbbfmcpbkajjklimomfcd
Descrição Point is a quick way to share and discuss what you find online.
Tamanho do Arquivo 1.72 MB
Contagem de Instalações 5,041
Versão Atual 2019.2.0.5
Última Atualização 2020-02-24
Data de Publicação 2020-02-23
Classificação 4.78/5 Total de 125 Avaliações
Desenvolvedor http://getpoint.co
Tipo de Pagamento free
Site da Extensão https://www.getpoint.co/
URL da Página de Ajuda https://twitter.com/GetPointApp
URL da Página de Política de Privacidade https://www.getpoint.co/legal
Idiomas Suportados 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\/*"
    ]
}