StackOverview
View quick stats about StackOverflow and StackExchange posts from Google search results
Vad är StackOverview?
StackOverview är en Chrome-tillägg utvecklad av Jason Wang, och dess huvudfunktion är "View quick stats about StackOverflow and StackExchange posts from Google search results".
Tilläggsskärmbilder
Ladda ner StackOverview-förlängningens CRX-fil
Ladda ner StackOverview-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
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.
Grundläggande Information om Tillägg
Namn | |
ID | oihjaeffdklalbagimogdhokoaidmain |
Officiell webbadress | https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain |
Beskrivning | View quick stats about StackOverflow and StackExchange posts from Google search results |
Filstorlek | 5.78 KB |
Antal Installationer | 44 |
Aktuell Version | 1.0.4 |
Senast Uppdaterad | 2015-01-29 |
Publiceringsdatum | 2015-01-29 |
Betyg | 4.83/5 Totalt 6 Betyg |
Utvecklare | Jason Wang |
Betalningssätt | free |
Stödda Språk | 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" } } |