StackOverview
View quick stats about StackOverflow and StackExchange posts from Google search results
Apa itu StackOverview?
StackOverview adalah ekstensi Chrome yang dikembangkan oleh Jason Wang, dan fitur utamanya adalah "View quick stats about StackOverflow and StackExchange posts from Google search results".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi StackOverview
Unduh file ekstensi StackOverview dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | oihjaeffdklalbagimogdhokoaidmain |
URL Resmi | https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain |
Deskripsi | View quick stats about StackOverflow and StackExchange posts from Google search results |
Ukuran File | 5.78 KB |
Jumlah Instalasi | 44 |
Versi Saat Ini | 1.0.4 |
Terakhir Diperbarui | 2015-01-29 |
Tanggal Publikasi | 2015-01-29 |
Penilaian | 4.83/5 Total 6 Penilaian |
Pengembang | Jason Wang |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |