Synonym Control-F
Control-F that also searches through synonyms.
Vad är Synonym Control-F?
Synonym Control-F är en Chrome-tillägg utvecklad av Neil Patil, och dess huvudfunktion är "Control-F that also searches through synonyms.".
Tilläggsskärmbilder
Ladda ner Synonym Control-F-förlängningens CRX-fil
Ladda ner Synonym Control-F-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Ctrl-F that works for synonyms, too! Ever wanted to find not just the exact word in a page, but other words like it too? Look no further. An extremely simple utility to find all similar words in a page.
Grundläggande Information om Tillägg
Namn | |
ID | ecaoofnlakiannealbioeelkagigklll |
Officiell webbadress | https://chrome.google.com/webstore/detail/synonym-control-f/ecaoofnlakiannealbioeelkagigklll |
Beskrivning | Control-F that also searches through synonyms. |
Filstorlek | 3.76 MB |
Antal Installationer | 332 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2014-08-05 |
Publiceringsdatum | 2014-08-05 |
Betyg | 3.17/5 Totalt 6 Betyg |
Utvecklare | Neil Patil |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Synonym Control-F", "description": "Control-F that also searches through synonyms.", "version": "1.1", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Highlight synonyms", "default_popup": "popup.html", "default_icon": "icon\/icon-38.png" }, "web_accessible_resources": [ "thesaurus.txt" ], "icons": { "16": "icon\/icon-16.png", "48": "icon\/icon-48.png", "128": "icon\/icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Synonym Control-F" } } } |