Use 9gif to extract gif url from 9gag post.
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": "9gif",
"description": "Use 9gif to extract gif url from 9gag post.",
"version": "1.1",
"background": {
"scripts": [
"js/background.js"
]
},
"content_scripts": [
{
"matches": [
"*://9gag.com/*"
],
"css": [
"css/9gif.css"
],
"js": [
"js/content.js",
"js/move.js"
]
}
],
"icons": {
"16": "icons/9gif16.png",
"48": "icons/9gif48.png",
"128": "icons/9gif128.png"
},
"permissions": [
"contextMenus"
]
}