結果ページのすべての単語を検索するためのGoogleの非表示の検索オプションがあります: allintext:
。 (参照: https://webapps.stackexchange.com/a/1095/27469 )
このオプションをすべてのGoogleに追加する可能性はありますかデフォルトで検索しますか?
FirefoxプラグインまたはGreasemonkeyスクリプトとして使用しますか?
回答
できます次の文字列を使用して、Chromeで検索エンジンを追加します。
https://www.google.com/search?q=allintext:%s
次にデフォルトにします。
すべてアドレスバーで検索するか、右クリックするとallintext
になります。
コメント
- これはfirefoxでも機能しますか?それともFirefox用のOpenSearchプラグインですか?
- Chromeで機能します。[設定]で検索する必要がありました。下部にあるanavancedをクリックします。ここでこれを追加できます
- I ' " google.com "この検索を追加するときのキーワードとして、追加されているように見えますが、
回答
Firefox検索アドオンを作成しました。これでジョブが実行されます。 GoogleAllintext
これはソースコードです:
<?xml version="1.0" encoding="UTF-8"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> <ShortName>GoogleAllintext</ShortName> <LongName>Search for all words in Google</LongName> <Description>Search for all words in Google</Description> <Image type="image/vnd.microsoft.icon" height="16" width="16">http://g-cdn.serienjunkies.de/favicon.ico</Image> <Developer>www.coffeeplusplus.z11.de</Developer> <Url type="application/opensearchdescription+xml" template="http://coffeeplusplus.z11.de/opensearch.xml" /> <Url type="text/html" rel="results" template="https://www.google.com/search?q=allintext:{searchTerms}" /> <Query role="example" searchTerms="Fringe" /> </OpenSearchDescription>
コメント
- そのアドオンに検索候補を追加しようとします