StackOverview
View quick stats about StackOverflow and StackExchange posts from Google search results
Was ist StackOverview?
StackOverview ist eine Chrome-Erweiterung, die von Jason Wang entwickelt wurde, und ihr Hauptmerkmal ist "View quick stats about StackOverflow and StackExchange posts from Google search results".
Erweiterungsscreenshots
StackOverview-Erweiterungs-CRX-Datei herunterladen
Laden Sie StackOverview-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
Get information about how many answers a StackOverflow or StackExchange post has and if there is an accepted answer for it straight from your Google search results. A green badge indicates that there is an accepted answer, yellow indicates that there is no accepted answer, and red indicates that there are no answers. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | oihjaeffdklalbagimogdhokoaidmain |
| Offizielle URL | https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain |
| Beschreibung | View quick stats about StackOverflow and StackExchange posts from Google search results |
| Dateigröße | 5.78 KB |
| Installationsanzahl | 44 |
| Aktuelle Version | 1.0.4 |
| Letztes Update | 2015-01-29 |
| Veröffentlichungsdatum | 2015-01-29 |
| Bewertung | 4.83/5 Insgesamt 6 Bewertungen |
| Entwickler | Jason Wang |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "1.0.4",
"name": "StackOverview",
"author": "Jason Wang",
"description": "View quick stats about StackOverflow and StackExchange posts from Google search results",
"content_scripts": [
{
"matches": [
"*:\/\/www.google.com\/*",
"*:\/\/www.google.ca\/*"
],
"css": [
"style.css"
],
"js": [
"index.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"http:\/\/*.stackoverflow.com\/*",
"https:\/\/*.stackoverflow.com\/*",
"http:\/\/*.stackexchange.com\/*",
"https:\/\/*.stackexchange.com\/*"
],
"icons": {
"48": "icons\/so48trans.png",
"128": "icons\/so128trans.png"
}
} | |