Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
Imgur Chrome Extension क्या है?
Imgur Chrome Extension gillesbertaux द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows trending posts on Imgur when a new tab is open"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Imgur Chrome Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Hello fellow Imgurian! This extension shows top posts from the front page or usersub every time you open a new tab. I added "productivity mode" to prevent the posts to display when you open a new tab. ----- Disclaimer: this project was not built by the Imgur staff. This is an unofficial Chrome Extension.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ajacnfghngjimlebbfafobbhofkmpnnp |
आधिकारिक URL | https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp |
विवरण | This extension shows trending posts on Imgur when a new tab is open |
फ़ाइल का आकार | 668 KB |
स्थापना संख्या | 76 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2017-01-14 |
प्रकाशन तिथि | 2017-01-14 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | gillesbertaux |
ईमेल | [email protected] |
भुगतान के प्रकार | in_app |
एक्सटेंशन वेबसाइट | https://github.com/gillesbertaux/imgur-chrome-extension |
सहायता पृष्ठ URL | https://github.com/gillesbertaux/imgur-chrome-extension |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Imgur Chrome Extension", "description": "This extension shows trending posts on Imgur when a new tab is open", "version": "1.0", "author": "TheMappleKindYeah", "homepage_url": "https:\/\/github.com\/gillesbertaux\/imgur-chrome-extension", "short_name": "Imgur App", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon_128.png", "48": "icon_48.png", "16": "icon_16.png" }, "chrome_url_overrides": { "newtab": "imgur.html" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "main.css" ], "js": [ "main.js" ] } ], "permissions": [ "storage" ] } |