Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
Was ist Imgur Chrome Extension?
Imgur Chrome Extension ist eine Chrome-Erweiterung, die von gillesbertaux entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows trending posts on Imgur when a new tab is open".
Erweiterungsscreenshots
Imgur Chrome Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Imgur Chrome Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ajacnfghngjimlebbfafobbhofkmpnnp |
| Offizielle URL | https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp |
| Beschreibung | This extension shows trending posts on Imgur when a new tab is open |
| Dateigröße | 668 KB |
| Installationsanzahl | 76 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2017-01-14 |
| Veröffentlichungsdatum | 2017-01-14 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | gillesbertaux |
| [email protected] | |
| Zahlungsart | in_app |
| Erweiterungswebsite | https://github.com/gillesbertaux/imgur-chrome-extension |
| Hilfeseite URL | https://github.com/gillesbertaux/imgur-chrome-extension |
| Unterstützte Sprachen | 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"
]
} | |