The actual direct link that redirects you from the gfycat details page to the GIF.
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": "Gfycat no detail",
"version": "1.0",
"description": "Redirects you from a gfycat detail page to the actual direct link of the gif.",
"icons": {
"48": "icons/nodetail.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"https://gfycat.com/*"
],
"background": {
"scripts": [
"redirect.js"
]
},
"content_scripts": [
{
"matches": [
"https://gfycat.com/*"
],
"js": [
"changebuttonlink.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{b0c773df-06be-4f53-bbb7-370628c453a5}"
}
}
}