Point

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

Vad är Point?

Point är en Chrome-tillägg utvecklad av http://getpoint.co, och dess huvudfunktion är "Point is a quick way to share and discuss what you find online.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Point-förlängningens CRX-fil

Ladda ner Point-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Point Point
ID ppcfnlhgbpebbbfmcpbkajjklimomfcd
Officiell webbadress https://chrome.google.com/webstore/detail/point/ppcfnlhgbpebbbfmcpbkajjklimomfcd
Beskrivning Point is a quick way to share and discuss what you find online.
Filstorlek 1.72 MB
Antal Installationer 5,041
Aktuell Version 2019.2.0.5
Senast Uppdaterad 2020-02-24
Publiceringsdatum 2020-02-23
Betyg 4.78/5 Totalt 125 Betyg
Utvecklare http://getpoint.co
Betalningssätt free
Tilläggswebbplats https://www.getpoint.co/
Hjälpsida URL https://twitter.com/GetPointApp
URL till Sekretesspolicy Sidan https://www.getpoint.co/legal
Stödda Språk 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\/*"
    ]
}