Inspect and view changes in Derpibooru Buttons and CSV source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Derpibooru Buttons",
"version": "1.1.1",
"description": "This extension has two features: \nIt adds two buttons to your search bar, one to filter by upvotes and one for faves. They can both be clicked multiple times to cycle through only, not and both. \n\nIt also allows the right clicking of images which will save them to a CSV which can be copied to the clipboard (and logged to the console) by clicking the button in the top bar.",
"icons": {
"48": "icon.png"
},
"permissions": [
"*://derpibooru.org/*"
],
"content_scripts": [
{
"matches": [
"https://derpibooru.org/*"
],
"js": [
"buttons.js",
"download.js"
],
"run_at": "document_end"
}
],
"developer": {
"name": "Moonstrike",
"url": "https://derpibooru.org/profiles/Moonstrike"
},
"short_name": "DerpiBtns"
}