Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
ما هو Imgur Chrome Extension؟
Imgur Chrome Extension هو إضافة Chrome تم تطويرها بواسطة gillesbertaux، والميزة الرئيسية لها هي "This extension shows trending posts on Imgur when a new tab is open".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Imgur Chrome Extension
قم بتنزيل ملفات الامتداد Imgur Chrome Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } |