Manage Quora Anonymous Links
Keep track of your anonymous Quora links.
Was ist Manage Quora Anonymous Links?
Manage Quora Anonymous Links ist eine Chrome-Erweiterung, die von https://standaloneinstaller.com entwickelt wurde, und ihr Hauptmerkmal ist "Keep track of your anonymous Quora links.".
Erweiterungsscreenshots
Manage Quora Anonymous Links-Erweiterungs-CRX-Datei herunterladen
Laden Sie Manage Quora Anonymous Links-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
It saves links automatically when you post new Quora Anonymous Question or Answer. You can stop Recording links (option available on app page). There is Delete All button which clear all links. You can also delete links one by one. ---------------------------------- Quora is trademark of quora.com
Grundlegende Informationen zur Erweiterung
Name | Manage Quora Anonymous Links |
ID | jcfndminbpmfgmoemghepebheiklnkhi |
Offizielle URL | https://chromewebstore.google.com/detail/manage-quora-anonymous-li/jcfndminbpmfgmoemghepebheiklnkhi |
Beschreibung | Keep track of your anonymous Quora links. |
Dateigröße | 643 KB |
Installationsanzahl | 15 |
Aktuelle Version | 0.0.0.2 |
Letztes Update | 2018-10-31 |
Veröffentlichungsdatum | 2018-10-31 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://standaloneinstaller.com |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://standaloneinstaller.com/privacypolicy.php |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Manage Quora Anonymous Links", "default_locale": "en", "description": "Keep track of your anonymous Quora links.", "background": { "persistent": false, "scripts": [ "background.js" ] }, "version": "0.0.0.2", "icons": { "128": "images\/icon.png" }, "browser_action": { "default_icon": "images\/icon.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.quora.com\/anonymous\/*" ], "run_at": "document_end" } ] } |