Kiwi Conversations

Kiwi Conversations searches community sites to find forum comment threads about the url you're visiting.

Was ist Kiwi Conversations?

Kiwi Conversations ist eine Chrome-Erweiterung, die von @spencerdailey entwickelt wurde, und ihr Hauptmerkmal ist "Kiwi Conversations searches community sites to find forum comment threads about the url you're visiting.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Kiwi Conversations-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kiwi Conversations-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        As you browse the web - Kiwi checks to see if there have ever been any conversations on reddit, Hacker News, and Product Hunt about the web page you're visiting. It also checks Google News for related news.

You can also make a custom search (any string of characters) across all the services.  This returns the all-time best conversations about whatever you're searching.  Try "MacBook", the place you live, or anything you want to learn about.

----

As you browse the web it searches for conversations: If it finds any results -- the icon updates with a letter depending on what it finds ('r','h','p', or 'G').  If it finds conversations with a *ton* of comments - it capitalizes the letter. So "R" means that thirty or more people commented in a Reddit thread about the site you're visiting. etc.
To view the results, just click the icon.


There's more information available at www.metafruit.com

Enjoy! :)

Home page: www.metafruit.com/kiwi

License: https://github.com/sdailey/kiwi/blob/master/LICENSE

Twitter: @spencenow

---

Privacy Settings:

Kiwi uses 3rd party APIs to provide conversations while you surf. 

With Research mode to "Off" by default, you can check URLs on a case-by-case basis (and still be able to do custom searches). Admittedly, it takes some of the serendipity out of it, but this prevents Kiwi from automatically performing searches as you surf. 

[Version 1.0.1 Note:: Kiwi Conversations now has Research Mode 'off' by default and has a Whitelist feature that lets certain sites (e.g., news sites, blogs, etc.) be automatically checked.  You can also just toggle Research Mode 'on' and every URL will be auto-searched.]

(More technical): Kiwi doesn't cache any personal info in localStorage or sync storage (which at least Chrome does not encrypt :< ). The api results are stored in a local variable within the scope of the extension. And the "history" is a hashed and padded blob.

[Version Note 1.1.8 - some of the search APIs were unavailable for several hours on 2015-8-16. this led to a poor user experience, so I have implemented several changes, chiefly: if a service is down - there will be a message notifying you of the network outages (which you can dismiss) -- and the rest of the results will flow in as they normally would.  :) phew, thanks for hanging around. i've tested this as well as I reasonably can, but if you notice any bugs, let me know at @spencenow on the twitters, thanks again!]

[Version Note 1.1.4 to existing users: the extension now has the option to also check for Product Hunt submissions! (You won't be opted-in automatically if you had it installed before 2015-8-14). This does require you to agree to new permissions because of the new API. Sorry for the inconvenience.]

PRIVACY POLICY - ADDED JULY 5, 2016
Kiwi uses 3rd-party APIs (Reddit, Algolia for HN, Product Hunt API [with Algolia Search for custom string searches] and Google News) to provide conversations about the URLs you are visiting while you surf.

By default, you (the Chrome extension user) must click the green “Research this Url” button while currently visiting a specific URL in order for Kiwi to research the conversations for it.  Research Mode can of course be toggled to "on", so Kiwi Conversations automatically checks for conversations (on Reddit, HN, Product Hunt, Google News). 

Whenever these services are queried, the requests are sent over HTTPS (an encrypted protocol).

You can toggle any of the specific APIs off/on in settings.

The results of these research results and other user-related URL history info is not persisted to local storage. Instead, this user data is stored in locally scoped variables of the extension.                    

Grundlegende Informationen zur Erweiterung

Name Kiwi Conversations Kiwi Conversations
ID pkifhlefpamigmobjmjjjnjglpebflhp
Offizielle URL https://chromewebstore.google.com/detail/kiwi-conversations/pkifhlefpamigmobjmjjjnjglpebflhp
Beschreibung Kiwi Conversations searches community sites to find forum comment threads about the url you're visiting.
Dateigröße 468 KB
Installationsanzahl 194
Aktuelle Version 1.2.6
Letztes Update 2016-07-06
Veröffentlichungsdatum 2016-07-05
Bewertung 4.60/5 Insgesamt 10 Bewertungen
Entwickler @spencerdailey
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kiwi Conversations",
    "short_name": "Kiwi",
    "description": "Kiwi Conversations searches community sites to find forum comment threads about the url you're visiting.",
    "version": "1.2.6",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "vendor\/gApiLoader.js",
            "vendor\/jquery-2.1.4.min.js",
            "vendor\/Underscore1-8-3.js",
            "vendor\/algoliasearch.min.js",
            "vendor\/CryptoJS.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "vendor\/jquery-2.1.4.min.js",
                "popup.js",
                "vendor\/Underscore1-8-3.js",
                "vendor\/bootstrap-3.3.5-dist\/js\/bootstrap.min.js",
                "vendor\/behigh-bootstrap_dropdown_enhancement\/js\/dropdowns-enhancement.js"
            ],
            "matches": [
                "https:\/\/hn.algolia.com\/*",
                "https:\/\/www.reddit.com\/submit.json*",
                "https:\/\/www.reddit.com\/api\/*",
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/api.producthunt.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google.com\/uds\/?file=search&v=1; object-src 'self'",
    "browser_action": {
        "name": "Kiwi",
        "default_icon": "kiwiFavico128.png",
        "default_popup": "popup.html"
    }
}