Quotebacks - quote the web
Quote the web and manage your snippets.
Was ist Quotebacks - quote the web?
Quotebacks - quote the web ist eine Chrome-Erweiterung, die von https://quotebacks.net entwickelt wurde, und ihr Hauptmerkmal ist "Quote the web and manage your snippets.".
Erweiterungsscreenshots
Quotebacks - quote the web-Erweiterungs-CRX-Datei herunterladen
Laden Sie Quotebacks - quote the web-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
Quotebacks is a tool that makes it easy to grab snippets of text from around the web and convert them into embeddable blockquote web components.
Grundlegende Informationen zur Erweiterung
Name | Quotebacks - quote the web |
ID | makakhdegdcmmbbhepafcghpdkbemach |
Offizielle URL | https://chromewebstore.google.com/detail/quotebacks-quote-the-web/makakhdegdcmmbbhepafcghpdkbemach |
Beschreibung | Quote the web and manage your snippets. |
Dateigröße | 429 KB |
Installationsanzahl | 2,000 |
Aktuelle Version | 1.1.4 |
Letztes Update | 2022-01-22 |
Veröffentlichungsdatum | 2020-06-30 |
Bewertung | 3.50/5 Insgesamt 6 Bewertungen |
Entwickler | https://quotebacks.net |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Blogger-Peer-Review/quotebacks |
Hilfeseite URL | https://github.com/Blogger-Peer-Review/quotebacks/issues |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quotebacks - quote the web", "description": "Quote the web and manage your snippets.", "version": "1.1.4", "manifest_version": 2, "permissions": [ "storage", "activeTab", "unlimitedStorage", "contextMenus" ], "icons": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" }, "browser_action": { "default_title": "Options" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "options.html", "styles\/styles.css", "images\/allquotes.png", "images\/editicon.svg", "quoteback-internal.js", "readability.js" ], "commands": { "open-popup": { "description": "Capture a quote from the web", "suggested_key": { "mac": "Ctrl+Shift+S", "windows": "Ctrl+Shift+S", "chromeos": "Ctrl+Shift+S", "default": "Ctrl+Shift+S" } }, "alt-open": { "description": "Alternative quote capture for Firefox", "suggested_key": { "mac": "Alt+S", "windows": "Alt+S", "chromeos": "Alt+S", "default": "Alt+S" } } } } |