Search bar added on filtering list views, show more rows than 200 per page, and show all users in one page. Icon credit: Google.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Salesforce Filter",
"version": "0.3",
"author": "Dane Peterson",
"description": "Search bar added on filtering list views, show more rows than 200 per page, and show all users in one page. Icon credit: Google.",
"icons": {
"16": "icon16.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://*.salesforce.com/*"
],
"css": [
"showmore.css"
],
"js": [
"jquery-3.1.1.min.js",
"showmore.js"
]
}
],
"browser_action": {
"default_icon": "icon16.png"
}
}