Similar Pages
Allows you to browse related pages.
Qu'est-ce que Similar Pages ?
Similar Pages est une extension Chrome développée par zamfofex, et sa fonction principale est "Allows you to browse related pages.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Similar Pages
Téléchargez les fichiers d'extension Similar Pages au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension gives you the ability to see webpages related to the one you are currently browsing. Whether you are looking at the documentation for your next programming project, trying to find your next favorite chocolate cake recipe, or even trying to research information for a school project, this extension can help you. By using Google Search technology, webpages from all throughout the Web are searched, and the relevant one that share a similar content to the one you are currently visiting are presented to you.
Informations de Base sur l'Extension
Nom | Similar Pages |
ID | lpedgppinmnpgdblfmjdppaeeldcpnil |
URL Officiel | https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil |
Description | Allows you to browse related pages. |
Taille du Fichier | 12.58 KB |
Nombre d'Installations | 1,111 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2019-04-09 |
Date de Publication | 2019-04-05 |
Développeur | zamfofex |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Similar Pages", "description": "Allows you to browse related pages.", "version": "1.1", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "browser_action": { "default_title": "Show Similar" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "default-options.js", "background.js" ], "persistent": false }, "web_accessible_resources": [ "main.html" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "always-injected.css" ], "js": [ "always-injected.js" ], "run_at": "document_start" } ], "incognito": "split", "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |